Jump to content
IGNORED

TI-99/4A websites that don't suck?


Recommended Posts

Thanks! was looking in the wrong spot on the .pdf and I was trying to look up the manufacturer part :roll:

 

Looks really easy to make. Just two Amps and some caps/resistors. Then an odd +8.2V but a little adjustable regulator should do the trick.

 

Now that RGB is there and looking good A simple RGB->S-Video is possible. To bad I have alot of projects on my plate already, guess I will wait till winter break.

 

Though since its a computer VGA makes a hell alot more sense.

Edited by Longhorn Engineer
Link to comment
Share on other sites

Have you tried some color tests from TI Basic?

No. I would like to do that, though. It's a bit of a PITA trying to adjust the colors without a nice color gradient to look at while adjusting. The color bars on the title screen work fairly well, but it could be better. I realize there are only 16 colors, but if I had a screen with them arranged like:

 

Light Red	  Light Green	  Light Blue
Medium Red	 Medium Green	 
Dark Red	   Dark Green	   Dark Blue
White		  Grey

On a black background. That'd be pretty cool.

 

Anyone got some TI-BASIC code for something like that? I totally suck at TI-BASIC. :(

Edited by djpubba
Link to comment
Share on other sites

No. I would like to do that, though. It's a bit of a PITA trying to adjust the colors without a nice color gradient to look at while adjusting. The color bars on the title screen work fairly well, but it could be better. I realize there are only 16 colors, but if I had a screen with them arranged like:

 

Light Red Light Green Light Blue

Medium Red Medium Green

Dark Red Dark Green Dark Blue

White Grey

 

On a black background. That'd be pretty cool.

 

Anyone got some TI-BASIC code for something like that? I totally suck at TI-BASIC.

 

Not entirely certain what you want, but here's a start:

 

10 CALL SCREEN(2)
20 CALL CLEAR
100 FOR I=40 TO 72 STEP 2
110 CALL CHAR(I, "FFFFFFFFFFFFFFFF")
120 CALL CHAR(I+1, "0000000000000000")
130 NEXT I
140 CALL COLOR(2, 10, 4)
150 CALL COLOR(3, 9, 3)
160 CALL COLOR(4, 7, 13)
170 CALL COLOR(5, 16, 15)
180 CALL COLOR(6, 6, 5)
190 FOR I=1 TO 6
200 PRINT "((((((((()))))))))HHHHHHHHH"
210 NEXT I
220 FOR I=1 TO 6
230 PRINT "000000000111111111HHHHHHHHH"
240 NEXT I
250 FOR I=1 TO 6
260 PRINT "888888888999999999IIIIIIIII"
270 NEXT I
280 FOR I=1 TO 5
290 PRINT "@@@@@@@@@AAAAAAAAAIIIIIIIII"
300 NEXT I
310 GOTO 310

 

Breakpoint when you're done with FCTN-4. It's a lot to type, so if you have a MiniMemory cartridge, you can save it on that with SAVE MINIMEM and reload it with OLD MINIMEM (that's the simplest if you don't have disk, and tape would take less time to type it than save it).

 

Looks like this:

post-12959-1193000505_thumb.png

Link to comment
Share on other sites

  • 3 weeks later...
That's what Longhorn Engineers are for. ;) If he made up a circuit for ColecoVision, it'd work on the TI/99-4a (and a Tandy CoCo 2, I think!) too.

 

Once I get my Atari video mods rolling (all thats left is the 2600 instructions) I will be free to work on some "other" projects.

Link to comment
Share on other sites

I'm just glad this mod has been proven to work! Very exciting stuff!

 

Going to give this a swing this winter break.

 

This mod doesn't look to bad. The Vidiot looks pretty straight forward to make and there are plenty of RGB->S-Video schematics out there.

 

missyrelm you will get your S-Video Ti one day :ponder:

Link to comment
Share on other sites

Just a side-note, I've been getting into the Tomy Tutor/Pyuuta simply because of it's simiarities with the TI, (it's very similiar in some ways to the TI) and came across the following:

 

http://www.floodgap.com/retrobits/tomy/ti-vs-tomy.html

Video Capabilities

The Tutor has the 9918ANL, same as the 99/8, which is functionally equivalent to the 9918A in the 99/4A (but not the 9918 in the 99/4). As such, it has the same screen resolution, characteristics and sprite capabilities.

 

 

 

 

I'm just glad this mod has been proven to work! Very exciting stuff!

 

Going to give this a swing this winter break.

 

This mod doesn't look to bad. The Vidiot looks pretty straight forward to make and there are plenty of RGB->S-Video schematics out there.

 

missyrelm you will get your S-Video Ti one day :ponder:

Link to comment
Share on other sites

  • 3 weeks later...

I thought I'd update that to this date I am *still* waiting for my 9928s to arrive from arcadechips.com.

 

I received an email saying "the new girl" caused some shipping mistakes, and upon a prompting email from me a tracking number that did not seem to work. A second prompt was not replied to. I'm going to send a third one as I haven't given up yet - but a warning seemed prudent.

 

(edit) Just checked and the tracking number DOES now show up - it shows as accepted Nov 27th (yesterday). So that means it actually IS on its way now. Yay! :)

Edited by Tursi
Link to comment
Share on other sites

  • 2 weeks later...

So I sat down tonight and played with one of the 9928s in my TI-99 - on it's own it did work and produced a nice greyscale picture from the Y pin.

 

Now, I don't want RGB, that's been done, I wanted S-Video. The first thing I learned is SV is not just the two component values added together. I now know all about quadrature encoding and reduced color space. Neat, but doesn't solve my wish. :)

 

Does anyone know any converter ICs or simple circuits that can do the conversion? I did an extensive search and the best I came up with, in the end, was using a pair of Analog digital encoder/decoder ICs to manage it. It's possible I didn't search for the right terms!

Link to comment
Share on other sites

So I sat down tonight and played with one of the 9928s in my TI-99 - on it's own it did work and produced a nice greyscale picture from the Y pin.

 

Now, I don't want RGB, that's been done, I wanted S-Video. The first thing I learned is SV is not just the two component values added together. I now know all about quadrature encoding and reduced color space. Neat, but doesn't solve my wish. :)

 

Does anyone know any converter ICs or simple circuits that can do the conversion? I did an extensive search and the best I came up with, in the end, was using a pair of Analog digital encoder/decoder ICs to manage it. It's possible I didn't search for the right terms!

 

I would say that whatever works for ColecoVision should work for this too, since it's the same chip.

Link to comment
Share on other sites

  • 5 weeks later...

There's been a lot of activity about this on the TI-99/4A yahoo group, in case anyones been wondering...

 

So I sat down tonight and played with one of the 9928s in my TI-99 - on it's own it did work and produced a nice greyscale picture from the Y pin.

 

Now, I don't want RGB, that's been done, I wanted S-Video. The first thing I learned is SV is not just the two component values added together. I now know all about quadrature encoding and reduced color space. Neat, but doesn't solve my wish. :)

 

Does anyone know any converter ICs or simple circuits that can do the conversion? I did an extensive search and the best I came up with, in the end, was using a pair of Analog digital encoder/decoder ICs to manage it. It's possible I didn't search for the right terms!

 

I would say that whatever works for ColecoVision should work for this too, since it's the same chip.

Edited by missyrelm
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...