PDP-1 alphanumeric codes
m |
(Oops) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
The '''PDP-1 alphanumeric codes''' were used to encode text characters for input and output on a DEC PDP-1, a computer model that was available from 1959 to 1969. The introduction of this model predated the creation of [[ASCII]], so (as was common in the early computer industry) a proprietary coding was used. | The '''PDP-1 alphanumeric codes''' were used to encode text characters for input and output on a DEC PDP-1, a computer model that was available from 1959 to 1969. The introduction of this model predated the creation of [[ASCII]], so (as was common in the early computer industry) a proprietary coding was used. | ||
− | Several different codings were used, actually; the manuals show at least three, Friden Code, FIO-DEC Code, and Concise Code. They each assigned different code points to the various letters, numbers, punctuation, and control characters. Concise codes were two-digit numbers, but were not always consecutive for letters of the alphabet; A through G were 61 through 67, but H was 70 and J was 41. Friden Codes used three digit numbers | + | Several different codings were used, actually; the manuals show at least three, Friden Code, FIO-DEC Code, and Concise Code. They each assigned different code points to the various letters, numbers, punctuation, and control characters. Concise codes were two-digit octal numbers (6 bits), but were not always consecutive for letters of the alphabet; A through G were 61 through 67, but H was 70 and J was 41. Friden Codes used three digit numbers. FIO-DEC codes are the same as Concise codes, with an extra bit (octal 200) to ensure the number of 1 bits is odd. (e.g. concise code 61 is FIO-DEC 61 as that has 3 bits on, and concise code 63 is FIO-DEC 263, as octal 63 has 4 bits on). This serves as a parity bit that a program reading in FIO-DEC encoding can check. |
== Links == | == Links == | ||
* [https://archive.org/stream/bitsavers_decpdp1F15_2666384/F15_PDP1_Handbook_Apr60#page/n15/mode/2up 1960 manual showing Friden and Concise codes] | * [https://archive.org/stream/bitsavers_decpdp1F15_2666384/F15_PDP1_Handbook_Apr60#page/n15/mode/2up 1960 manual showing Friden and Concise codes] | ||
* [https://archive.org/stream/bitsavers_decpdp1F17_28841238/F17_PDP1Maint_1962#page/n123/mode/2up 1962 manual showing FIO-DEC and Concise codes] | * [https://archive.org/stream/bitsavers_decpdp1F17_28841238/F17_PDP1Maint_1962#page/n123/mode/2up 1962 manual showing FIO-DEC and Concise codes] | ||
+ | |||
+ | [[Category:Digital Equipment Corporation]] |
Latest revision as of 22:45, 20 June 2025
The PDP-1 alphanumeric codes were used to encode text characters for input and output on a DEC PDP-1, a computer model that was available from 1959 to 1969. The introduction of this model predated the creation of ASCII, so (as was common in the early computer industry) a proprietary coding was used.
Several different codings were used, actually; the manuals show at least three, Friden Code, FIO-DEC Code, and Concise Code. They each assigned different code points to the various letters, numbers, punctuation, and control characters. Concise codes were two-digit octal numbers (6 bits), but were not always consecutive for letters of the alphabet; A through G were 61 through 67, but H was 70 and J was 41. Friden Codes used three digit numbers. FIO-DEC codes are the same as Concise codes, with an extra bit (octal 200) to ensure the number of 1 bits is odd. (e.g. concise code 61 is FIO-DEC 61 as that has 3 bits on, and concise code 63 is FIO-DEC 263, as octal 63 has 4 bits on). This serves as a parity bit that a program reading in FIO-DEC encoding can check.