-
Content Count
364 -
Joined
-
Last visited
Posts posted by twoodland
-
-
28 minutes ago, --- Ω --- said:How about a weekly thing? That way it happens often enough that people do not forget, or those who cannot make a one time fixed date have other chances throughout the month.
I am up for that. How about creating a poll to see how many are interested in participating?
-
Good day everyone! I am sorry that I missed this month's chat due to being out of town. I am looking forward to next month's chat.
-
1
-
-
Omega made the point that it is actually cool that you need an actual TI to join the chat, and I can agree with that!
Thanks Omega!
-
1
-
-
I am going to be out of town on the 9th but would still like to participate in the monthly group chat. I am unable to take my TI with me. Is there an emulator that supports serial connectivity? I have a WiModem232. I know that Stuart created a Python Script to Emulate the Lantronix Serial-to-Ethernet Adapter. Is there any way to leverage what is currently available? Is there any type of remote control software (VNC/RDP)/hardware (arduino) solution for the TI?
-
AWESOME! Thank you sparkdrummer!!
-
No worries! There is always next month.
-
I was on from 9 PM EST to 9:40 PM EST. Sorry that you couldn't get connected.
-
Good day everyone,
I have a friend who contacted me recently. She dug her SX-64 out of storage that she bought new to run some games that she enjoyed playing some years before. She turned it on, and only gets a black screen (well, she described it as a white screen because she turned up the brightness when it didn't display anything).
I told her that I would look at it, so I drove over to check it out. I confirmed that it displayed a black screen, no garbage. When I took the cover off, the rail on the right (from looking from the back of the unit) was broken. I asked her if she or anyone had it apart, and she told me that to her knowledge it had never been opened. The inside looked all original and I did not see anything that had been replaced. I spent some time cleaning it and checking all of the wire and board connections. I started to re-seat the socketed chips. The CPU board is a Rev A and I noticed that the 6510 MPU (ceramic type - original?) had thermal grease on the legs. I took it out and saw that the rightmost bottom leg (2?) was bent under the chip not inserted into the socket. I carefully straightened the leg and re-inserted it into the socket. No Change in symptoms.
I tried taking out the SID, no change. I swapped out the PIA, no change. I swapped out the Kernal, no change. I am unable to locate a MPU to swap it out and I do not have the diagnostic cart & cables.
Does anyone know where I can get a replacement MPU? If I can get a replacement and if it does not fix the issue, what should I try next? Does anyone offer diagnostic services?
-
-
This is FANTASTIC! Thank you!
-
1
-
-
I know it's a bit late but if you have 80 column support for your terminal program of choice, then connect to towel.blinkenlights.nl on port 23 to see the first movie Star Wars: A New Hope presented entirely in ASCII
-
3
-
-
With adamantyr's permission, I have converted the assembly language version of TI-TREK to a .BIN format for FG99 use. It can be downloaded from HERE or download the attached file.
-
3
-
-
Absolutely! This Thursday May 9th - 9-10PM CEST and 9-10PM EST! Please join us!!!
-
-
I am unsure of which switch you used on the PCB so look at these to see if you can locate a compatible match.
-
2
-
-
If the player supports FLAC then it might be an option as well. I take my cassette audio and recondition it using CS1er, and then I store the file as FLAC. FLAC is a free lossless audio codec that includes file compression so the files take up less space but without any loss in quality. Note: I do however, have to add a second of silence at the start of the CS1 output file for my player (foobar2000) to play it.
-
2
-
-
It is probably an error in AEMSSYS not pointing to the correct pathname. Give us a look at your AEMSSYS file.
atrax27407 FYI here is the contents of the AEMSSYS file. Last night I noticed that it had the attribute of "Classic" so I converted it to TIFILES format using Ti99Dir and it the console was able to read the file
** AEMS Boot Script*RAM 1024*SW99MENU DSK1.TIN_A,'TI-Nopoly'*......................-
4
-
-
Success! Thanks to all of you for your help! It ended up being a simple issue that I had overlooked. If you look at my files screenshot. The AEMSSYS script file has the Attibute of "Classic". I converted this file to TIFILES and it loaded on the console. I feel embarrassed, but am very thankful for your input.
-
2
-
-
-
Good day everyone. I need your help! What am I doing wrong?
Goal: To play TI-Nopoly on real iron.
Issue: Loading EA5 "ABOOT" on Classic 99 loads menu option E "TI-Nopoly". Loading the same file from the TI Console does not load option E.
Hypothesis: The AEMS boot script is not finding the SAMS memory.
CFG: TI-99/4A console w/Speech Synth, PEB (FlexCable Interface, TI32K, TIRS232, TIPI-PEB, SAMS 1024K, TIDisk Controller)
Attachments:
Files in Directory:
Classic 99 Screen Shot 1:
Classic 99 Screen Shot 2:
Real Iron Screen Shot 1:
Real Iron Screen Shot 2:
-
Is there any way we can edit the first post to indicate that sales are closed?
FYI - [email protected] helped me out with one of my topics by telling me that if you become a subscriber then you can edit post #1 which will let you edit the Topic title.
So you can decide to do that or maybe a moderator with rights can assist.
-
-
I find it had to believe no one but me owned that book and converted programs out of it?
Though I do remember most were exact duplicates from 99er and other mags.
Anyway they have to be in this ZIP:
Thank you for sharing those files!
-
2
-
-
I have converted game #1 Acey Ducey using minimal changes.
10 PRINT TAB(26);"ACEY DUCEY CARD GAME" 20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY" 21 PRINT 22 PRINT 30 PRINT "ACEY-DUCEY IS PLAYED IN THE FOLLOWING MANNER " 40 PRINT "THE DEALER (COMPUTER) DEALS TWO CARDS FACE UP" 50 PRINT "YOU HAVE AN OPTION TO BET OR NOT BET DEPENDING" 60 PRINT "ON WHETHER OR NOT YOU FEEL THE CARD WILL HAVE" 70 PRINT "A VALUE BETWEEN THE FIRST TWO." 80 PRINT "IF YOU DO NOT WANT TO BET, INPUT A 0" 100 N=100 110 Q=100 120 PRINT "YOU NOW HAVE";Q;"DOLLARS." 130 PRINT 140 GOTO 260 210 Q=Q+M 220 GOTO 120 240 Q=Q-M 250 GOTO 120 260 PRINT "HERE ARE YOUR NEXT TWO CARDS: " 270 A=INT(14*RND)+2 280 IF A<2 THEN 270 290 IF A>14 THEN 270 300 B=INT(14*RND)+2 310 IF B<2 THEN 300 320 IF B>14 THEN 300 330 IF A>=B THEN 270 350 IF A<11 THEN 400 360 IF A=11 THEN 420 370 IF A=12 THEN 440 380 IF A=13 THEN 460 390 IF A=14 THEN 480 400 PRINT A 410 GOTO 500 420 PRINT "JACK" 430 GOTO 500 440 PRINT "QUEEN" 450 GOTO 500 460 PRINT "KING" 470 GOTO 500 480 PRINT "ACE" 500 IF B<11 THEN 550 510 IF B=11 THEN 570 520 IF B=12 THEN 590 530 IF B=13 THEN 610 540 IF B=14 THEN 630 550 PRINT B 560 GOTO 650 570 PRINT "JACK" 580 GOTO 650 590 PRINT "QUEEN" 600 GOTO 650 610 PRINT "KING" 620 GOTO 650 630 PRINT "ACE" 640 PRINT 650 PRINT 660 INPUT "WHAT IS YOUR BET":M 670 IF M<>0 THEN 680 675 PRINT "CHICKEN!!" 676 PRINT 677 GOTO 260 680 IF M<=Q THEN 730 690 PRINT "SORRY, MY FRIEND, BUT YOU BET TOO MUCH." 700 PRINT "YOU HAVE ONLY ";Q;" DOLLARS TO BET." 710 GOTO 650 730 C=INT(14*RND)+2 740 IF C<2 THEN 730 750 IF C>14 THEN 730 760 IF C<11 THEN 810 770 IF C=11 THEN 830 780 IF C=12 THEN 850 790 IF C=13 THEN 870 800 IF C=14 THEN 890 810 PRINT C 820 GOTO 910 830 PRINT "JACK" 840 GOTO 910 850 PRINT "QUEEN" 860 GOTO 910 870 PRINT "KING" 880 GOTO 910 890 PRINT "ACE" 900 PRINT 910 IF C>A THEN 930 920 GOTO 970 930 IF C>=B THEN 970 950 PRINT "YOU WIN!!!" 960 GOTO 210 970 PRINT "SORRY, YOU LOSE" 980 IF M<Q THEN 240 990 PRINT 1000 PRINT 1010 PRINT "SORRY, FRIEND, BUT YOU BLEW YOUR WAD." 1015 PRINT : : 1020 INPUT "TRY AGAIN (YES OR NO)":A$ 1025 PRINT : : 1030 IF A$="YES" THEN 110 1040 PRINT "O.K., HOPE YOU HAD FUN!" 1050 END
-
3
-





My next TI console will be my last TI console
in TI-99/4A Computers
Posted
Is this the thread you are looking for?