Difference between revisions of "Troubleshooting"

From Ninerpedia
Jump to navigation Jump to search
Line 21: Line 21:
Image:Vram_fe.png | Mask 11111110
Image:Vram_fe.png | Mask 11111110
</gallery>
</gallery>
If you found your screen output in this gallery, you will have to replace the failing video RAM circuit on the board. The video RAM is on the left side:
[[File:Vram.jpg]]
The image shows the bit numbers on the circuits. Note that Texas Instruments uses a big-endian bit order, i.e. bit 0 is the most significant bit (2<sup>7</sup>), and bit 7 is the least significant bit (2<sup>0</sup>). Accordingly, if your failure symptom is Mask 11011111, this means bit 2 is stuck at 0.

Revision as of 11:54, 17 July 2016

So your good old TI does not feel good recently? Or you have bought a console or expansion on the Internet and wonder whether something is wrong, or whether you just don't use it correctly?

We will discuss some trobleshooting strategies on these pages.

Video issues

Sometimes you can find weird screen outputs on real TI consoles, some of them shown on Ebay. In most cases the problem is a defect RAM circuit. The video memory is implemented by 8 circuits of TMS4116 (16K x 1); that is, each circuit hold exactly one bit of each byte.

Thanks to MESS, we can simulate various failure symptoms. For instance, when we apply an AND operation with byte 0x7F to every byte written to VDP RAM, the effect is the same as if the memory circuit for the leftmost bit has died - because the binary representation of 0x7F is 01111111. Likewise, if we AND the value 0xBF on each byte (0xBF = 10111111), the result should look as if the second RAM circuit is defect.

From experience we can say that dead circuits should cause these stuck-at-0 symptoms; we never saw a stuck-at-1 or other cross-dependencies.

If you found your screen output in this gallery, you will have to replace the failing video RAM circuit on the board. The video RAM is on the left side:

Vram.jpg

The image shows the bit numbers on the circuits. Note that Texas Instruments uses a big-endian bit order, i.e. bit 0 is the most significant bit (27), and bit 7 is the least significant bit (20). Accordingly, if your failure symptom is Mask 11011111, this means bit 2 is stuck at 0.