Difference between revisions of "VT100"

From Computer History Wiki
Jump to: navigation, search
m (Proper cat, +links)
(I'm implementing a VT100 hardware simulator. Here's the good stuff.)
Line 18: Line 18:
 
===References===
 
===References===
 
[1] Discussion on the classic computers mailing list (classiccmp.org)
 
[1] Discussion on the classic computers mailing list (classiccmp.org)
 +
 +
==External links==
 +
 +
* [http://bitsavers.org/pdf/dec/terminal/vt100/EK-VT100-TM-003_VT100_Technical_Manual_Jul82.pdf "VT100 Series Video Terminal Technical Manual"] - explains the VT100 hardware.
 +
* [http://bitsavers.org/pdf/dec/terminal/vt100/MP00633_VT100_Schematic_Feb82.pdf "VT100-0 Field Maintenance Print Set"] - schematics.
  
 
{{semi-stub}}
 
{{semi-stub}}

Revision as of 06:29, 6 May 2021

VT100 guide

The VT100 was a very popular RS-232 based dumb video terminal introduced by DEC in 1978. It featured cursor keys, and the ability to place text wherever the programs wished onto the screen.

The VT100 was so popular it became THE standard for terminals, and terminal emulators.

The VT100 used an Intel 8080 processor, the later VT102 used an 8085. VT100 clones (and there were many) would use a number of different processors, not necessarily sticking to the original.

Surprisingly the VT100 could not actually handle 9600 baud full throttle. The serial hardware could, but the screen could not be updated at 960 characters per second. Thus flow control was essential unless working with a slow system (e.g. an old minicomputer..). Xon/Xoff was the most common method for flow control on DEC/VT100 systems. To handle the speed problem some people would put the VT100 into VT52 mode (one of the VT series' features) because VT52 processing had less overhead.[1]

On a personal note, those of us seeing a VT100 for the first time way back then were floored by the "smooth scroll" feature.. now that looked nice. Until you realized how slow it became. Obviously those who demanded speed would turn off the smooth scroll mode and use every other measure to improve how fast the terminal could process data (see above).

VT180

In 1982 DEC introduced a Z80-based option board which turned the VT100 into a CP/M microcomputer. The option board included 64KB of RAM, a floppy disk controller and an extra serial port, in addition to the Z80. It was also possible to buy a terminal with the option board pre-installed, this configuration was sold as the VT180.

References

[1] Discussion on the classic computers mailing list (classiccmp.org)

External links