Engineering:Television Interface Adaptor

From HandWiki
Short description: Video/audio/input chip of the Atari 2600
Atari 2600

The Television Interface Adaptor[1] (TIA) is the custom computer chip, along with a variant of the MOS Technology 6502 constituting the heart of the 1977 Atari Video Computer System game console. The TIA generates the screen display, sound effects, and reads the controllers. At the time the Atari VCS was designed, even small amounts of RAM were expensive. The chip was designed around not having a frame buffer, instead requiring detailed programming to create even a simple display.[2]

Development of the CO10444/CO11903[3] TIA was led by Jay Miner who continued at Atari expanding on the design of the TIA for the Atari 400/800 computers with the ANTIC and CTIA/GTIA chips. Jay Miner later led the design of the custom chips for the Amiga computer.

Design

The motherboard of the original six-switch Atari VCS. The 40-pin TIA chip is on the left. The center 28-pin is the MOS Technology 6507, and to its right, the 40-pin MOS Technology 6352 Ram-I/O-Timer (RIOT) chip. The cartridge insertion slot is to the immediate right of the RIOT chip.

Background

Around 1975, Atari's engineers at Cyan Engineering led by Steve Mayer and Ron Milner had been considering alternatives to the development dedicated hardware such as application-specific integrated circuits (ASIC) for arcade video games and home video game consoles. Programmable microprocessors had reached the market, but Atari considered them too expensive for a home application.[4] They were limited by cost in options for displaying graphics. At this point in time, most computer graphics were generated by using sprites drawn atop a playfield, which then were translated into an analog signal for display on a CRT video monitor.[5] Sprites would be held as a bitmap in a framebuffer, requiring random-access memory (RAM). RAM was still expensive, costing tens of thousands of dollars per megabyte.[6], and to display a two-color playfield on a 80×48 display would have cost thousands of dollars in memory.[4] On a conventional NTSC color television, maximum resolutions generally fell between 256 and 320 pixels per line, and 192 to 240 lines per screen.[7]

In September 1975, MOS Technology introduced the 6502 microprocessor, one of the first low-cost microprocessors on the market. Mayer and Milner arranged to speak to the chip's designer, Chuck Peddle, on using the 6502 as the basis for their programmable video game console. Over the course of a couple of days, the basic design of the Atari VCS was laid out, with Peddle offering Atari the use of the lower-cost MOS Technology 6507 processor and the MOS Technology 6532 RAM-I/O-Timer (RIOT) as the core of the design.[8] Using a breadboard prototype for the display adapter atop a 6502 testbed system, Milner was able to demonstrate the ability to program a simple version of their Tank game. Joe Decuir was hired on to help convert Milner's proof-of-concept to a functional prototype, sufficient for Atari to give the go-ahead for the development to continue.[4]

While Decuir worked on the design of the rest of the system, Jay Miner focused on making an ASIC for the display adapter.[4] Early on, the ASIC display adapter was named the Television Interface Adaptor (TIA).[4] The cost of RAM remained high as the team began its design, and thus the option to use memory-based framebuffers was dropped from the TIA's design.[4]

RAM-less design

Due to the lack of RAM, the TIA differs from the conventional framebuffer approach on the screen is composed by manipulating five movable graphic objects (2 players, 2 missiles and 1 ball) and a static playfield object. These are all generated on every scan line from their respective registers, unlike the technique used in a framebuffer-mapped model, requiring the program to update these on every scan line.[9] Horizontal resolution is not uniform, as its size depends on the particular graphics object. The smallest unit of pixel corresponds to 1 color clock cycle of the chip, of which there are 160 visible ones on a line.[9]

The Playfield object consists of a two-and-a-half byte register (20 bits wide), which can be reflected symmetrically or copied as-is to the right half of the screen for 40 bits in total (each bit being 4 color cycles wide). The color that was drawn if the bit was a 1 or a 0 was selected from a pre-defined palette of up to 128 colors (see below) and held in other registers.

The TIA also supported five separate graphics objects consisting of:

  • Two 8-pixel horizontal lines which make up the 'sprites' Player 1 and Player 2. These are single color, can be stretched by a factor of 2 or 4, and can be duplicated or triplicated.
  • A 'ball' - a horizontal line that is the same color as the playfield. It can be one, two, four, or eight pixels wide.
  • Two 'missiles' - another horizontal line that is the same color as its respective player. It can be one, two, four, or eight pixels wide.

Without RAM-based framebuffers, collision detection is also complicated. The TIA has hardware collision detection for all of these objects through the use of 15 set/reset flip-flops and stores a bitmap of collisions, that are typically read during the VBLANK period.[4] Registers in the TIA allow the programmer to control the positioning of the graphical objects and their color.

The TIA also provides two channels of one-bit sound. Each channel provides for 32 pitch values and 16 possible bit sequences. There is a 4 bit volume control.[4]

Lastly, the TIA has inputs for reading up to four analog paddle controllers using potentiometers and for two joystick triggers.[4]

Drawing the display

As the registers hold data for only a single line of the display, creating a full screen requires the game program to update the registers on the fly, a process known as "racing the beam".[10]

To start the process, the game program running on the MOS Technology 6502-based CPU loads the TIA's registers with the data needed to draw the first line of the display. The TIA then waits until the television is ready to draw the line (under the command of the TIA's associated analog hardware) and read out the registers to produce a signal for that line. During the horizontal blanking period between lines, the 6502 quickly changes the TIA's registers as needed for the next line. This process continues down the screen.

This is made more difficult because the MOS Technology 6507 in the 2600 is a pin-reduced version of the 6502 with no support for hardware interrupts. Generally the analog side of the display system generates an interrupt when it finishes drawing a raster line and is getting ready for the next one. The interrupt triggers the code needed to update the screen, and then returns to the "main" program. The 6507 left these pins off of the CPU to save money, however it does have a "RDY" pin to insert wait states into CPU bus cycles. The TIA was specifically designed to use the RDY pin to synchronize the CPU with the raster line timing of the video generated by the TIA: when the CPU writes to a certain register address of the TIA, the TIA lowers its RDY output signal until the beginning of the next line, a "wait for sync" command.[4] This suspends the operation of the CPU until the start (color clock cycle 0) of the next line, providing a measure of automatic synchronization. The intended use of this mechanism is for the CPU to set up the TIA registers for the following line before the TIA reaches the end of the current line, then write to the register that triggers the synchronization delay via RDY, throwing away a variable amount of CPU time for the benefit of easier video timing synchronization.[4]

In addition, the TIA only semi-automatically generates vertical sync timing signals (to mark the end of each video frame and the start of the next). The TIA is capable of inserting a vertical sync signal into the analog output video signal, but it does not have a frame line-counter and so cannot tell when a frame should end. Instead, it is left to the CPU program to trigger vertical sync signals and to count the lines in each frame to determine when a vertical sync signal should be generated. Like for the RDY-wait hardware, the vertical sync signal is triggered by the CPU writing to a specific TIA register address. If no write to that address was ever done and the TIA was allowed to free-run, it would generate a single infinite frame of active raster lines, which would typically appear on the TV as a rolling picture. Most published games for the Atari 2600 generated vertical sync after either every 262 or every 263 lines (but nothing about the TIA prevents it from generating frames of any length, shorter or longer, though the resulting video displays would roll vertically on normal TVs).

These and other details of TIA programming mean that programmers need to time their programs carefully to run in the exact number of cycles needed for various screen-related events. Getting this wrong means the screen is not drawn properly. The part of a program that does this is known as the "kernel" of that program.[11]

Given this complexity, early games using the system tended to be simple in layout, using the TIA to create symmetric playfields with players on top. This was the original intention of the system: to run the handful of arcade games Atari had already produced like Tank and Pong. In these cases the playfield data was typically laid out in the 2 kB ROM memory in the game cartridge. As each line used 20 bits of data, and there were 192 lines on an NTSC display,[12] a display with a different layout on every line needed only 480 bytes (192 x 20 / 8) of the cartridge's 4 kB to hold a single hard-coded display. In this case the kernel simply advanced 20 bits through ROM for every line as the TIA advanced down the screen, a task that took only a few cycles of CPU time. This can be further reduced by using the same data for multiple lines, either doubling them vertically, or reading one way through the list for the top and then back the other way for the bottom, producing a vertically mirrored display of only 240 bytes.

Rainbow effect visible in Barnstorming game

A key advance was the licensing of Space Invaders for the platform, which required many more player graphics to draw the enemy aliens. The solution was to change the player data for every line as the image was being drawn, creating an apparent large number of players. Another advance was made by (partially) coding the display as CPU instructions instead of storing it as fixed data in ROM. Adventure uses this concept to produce a wide variety of maps by combining different portions of the data in ROM, jumping back and forth through it during the screen drawing.[13] This allowed the game to have 30 rooms, which would have otherwise required 14 kB of ROM.

As programmers grew more accustomed to the odd timing needed to get things to work properly on-screen, they began to use the inherent flexibility in the TIA to greatly improve the displays. One common technique was to change the color registers that were used to draw the 1 and 0 states of the playfield, resulting in displays with rainbow-like effects. Later games could modify the playfield mid-line to generate asymmetric patterns, repositioning and changing player sprites mid-screen to generate additional sprites.

TIA Color Capabilities

The TIA uses different color palettes depending on the television signal format used. For NTSC format (part number CO10444),[3] a 128-color palette is provided, while only 104 colors are available for PAL (part number CO11903).[3] Finally, the SECAM palette consists of only 8 colors.

NTSC palette

luminance
hue
0 2 4 6 8 10 12 14
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

PAL palette

luminance
hue
0 2 4 6 8 10 12 14
0,1,14,15
2
3
4
5
6
7
8
9
10
11
12
13

SECAM palette

0 2 4 6 8 10 12 14

Noise/Tone Generator (AUD0/1)

The TIA is capable of generating different types of pulse waves and white noise output to its two oscillators (or channels) AUD0 and AUD1. Each oscillator has a 5-bit frequency divider and a 4-bit audio control register which manipulates the waveform. There is also a 4-bit volume control register per channel.

Frequency Divider (AUDF0/1)

Frequencies are generated by taking 31399 Hz (31113 Hz for PAL) and dividing by the 5-bit value supplied.[14] The result is a cheap frequency divider capable of detuned notes and the odd tuned frequency. The TIA is not a musical chip unless the composer works within the frequency limits or modulates between two detuned frequencies to create a vibrato tuned note.

Audio Control (AUDC0/1)

The Audio Control register generates and manipulates a pulse wave to create complex pulses or noise. The following table (with designed duplicates) explains how its tones are generated:

HEX D7 D6 D5 D4 D3 D2 D1 D0 Type of noise or division
0   0 0 0 0 Set to 1 (volume only)
1 0 0 0 1 4 bit poly
2 0 0 1 0 ÷ 15 → 4 bit poly
3 0 0 1 1 5 bit poly → 4 bit poly
4 0 1 0 0 ÷ 2
5 0 1 0 1 ÷ 2
6 0 1 1 0 ÷ 31
7 0 1 1 1 5 bit poly → ÷ 2
8 1 0 0 0 9-bit poly (white noise)
9 1 0 0 1 5-bit poly
A 1 0 1 0 ÷ 31
B 1 0 1 1 Set last 4 bits to 1
C 1 1 0 0 ÷ 6
D 1 1 0 1 ÷ 6
E 1 1 1 0 ÷ 93
F 1 1 1 1 5-bit poly ÷ 6

References

  1. Atari Video Computer System Field Service Manual - Model 2600/2600A Domestic. Atari, Inc.. January 21, 1983. pp. 1–4. http://www.atariguide.com/pdfs/Atari_2600_VCS_Domestic_Field_Service_Manual.pdf. Retrieved September 10, 2010. 
  2. Hague, James (September 10, 2013). "Why Do Dedicated Game Consoles Exist?". https://prog21.dadgum.com/181.html. 
  3. 3.0 3.1 3.2 Stilphen, Scott (February 5, 2020). "ATARI VCS/2600 TIA CHIPS". http://www.ataricompendium.com/faq/vcs_tia/vcs_tia.html. 
  4. 4.00 4.01 4.02 4.03 4.04 4.05 4.06 4.07 4.08 4.09 4.10 Decuir, Joe (July 2015). "Atari Video Computer System: Bring Entertainment Stories Home". IEEE Consumer Electronics Magazine: 59–66. doi:10.1109/MCE.2015.2421572. 
  5. Chris Crawford, "ANTIC and the display list", De Re Atari
  6. McCallum, John C. (February 13, 2012). "Memory Prices (1957-2012)". http://www.jcmit.com/memoryprice.htm. 
  7. Montfort & Bogost, pg. 27
  8. Goldberg, Marty; Vendel, Curt (2012). "Chapter 5". Atari Inc: Business is Fun. Sygyzy Press. ISBN 978-0985597405. 
  9. 9.0 9.1 Wright, Steve. "Stella Programmer's Guide", (in Spanish) December 3, 1979. Archived on March 5, 2016.
  10. Kohler, Chris (March 13, 2009). "Racing the Beam: How Atari 2600's Crazy Hardware Changed Game Design". Wired. https://www.wired.com/2009/03/racing-the-beam/. 
  11. Montfort & Bogost, pg. 34
  12. More on PAL, see "Atari 2600 Specifications"
  13. Robinett, Warren, "Adventure", University of North Carolina. Archived on January 27, 2018.
  14. "Sound Chips in 8-bit Computers". http://flop.atariportal.cz/content/62/en/ZVUKE1P1.html. 

Sources

External links