Difference between revisions of "Knight TV system"

From Computer History Wiki
Jump to: navigation, search
(A good start)
 
m (External links: +user doc)
Line 7: Line 7:
 
==External links==
 
==External links==
  
 +
* [https://github.com/PDP-10/its/blob/master/doc/sysdoc/tv.100 TV 100] - documentation
 
* [https://github.com/PDP-10/its/blob/master/src/system/tv.147 TV 147] - source for the PDP-11 code
 
* [https://github.com/PDP-10/its/blob/master/src/system/tv.147 TV 147] - source for the PDP-11 code
 
* [https://www.computerhistory.org/collections/catalog/102803892 Knight TV Controller] - perhaps the only image of the hardware left
 
* [https://www.computerhistory.org/collections/catalog/102803892 Knight TV Controller] - perhaps the only image of the hardware left

Revision as of 19:43, 5 February 2024

The Knight TV system was one of the very first bit-mapped display systems. It consisted of two UNIBUS devices, built onto a PDP-11/10 (the 'TV-11'), which was connected to the MIT-AI time-sharing KA10 system, through the Rubin 10-11 interface to the PDP-10.

One was the bit-mapped display unit, which contained a large amount of DRAM (using the then-new Intel 1103 chips), enough to provide 16 independent frame buffers. The outputs from these were run into a video switch, which could drive up to 63 stations (about 30 were actually installed, on the 3rd, 8th and 9th floors of the Technology Square building), each consisting of a relatively square CRT (resolution 576x454 pixels) displays. Associated with each display was a keyboard; these were all connected to the other device in the system, a keyboard multiplexer.

The code running in the PDP-11 read keystrokes, and fed them to the PDP-10. The PDP-10 could either send text to the TV-11, which wrote the appropriate pixels into the frame buffers to display it; alternatively a frame buffer could be mapped into the address space of a process on the ITS machine, which could then write directly into the hardware frame buffer.

External links