RADIX 50
or RAD50
(also referred to as RADIX50,
RADIX-50
or RAD-50), is an uppercase-only
character encoding
Character encoding is the process of assigning numbers to graphical characters, especially the written characters of human language, allowing them to be stored, transmitted, and transformed using digital computers. The numerical values tha ...
created by
Digital Equipment Corporation
Digital Equipment Corporation (DEC ), using the trademark Digital, was a major American company in the computer industry from the 1960s to the 1990s. The company was co-founded by Ken Olsen and Harlan Anderson in 1957. Olsen was president unti ...
(DEC) for use on their
DECsystem,
PDP, and
VAX computers.
RADIX 50's 40-character repertoire (050 in
octal
The octal numeral system, or oct for short, is the radix, base-8 number system, and uses the Numerical digit, digits 0 to 7. This is to say that 10octal represents eight and 100octal represents sixty-four. However, English, like most languages, ...
) can encode six characters plus four additional bits into one
36-bit machine
word
A word is a basic element of language that carries an objective or practical meaning, can be used on its own, and is uninterruptible. Despite the fact that language speakers often have an intuitive grasp of what a word is, there is no consen ...
(
PDP-6,
PDP-10/DECsystem-10,
DECSYSTEM-20), three characters plus two additional bits into one
18-bit
18 binary digits have (1000000 octal, 40000 hexadecimal) distinct combinations.
18 bits was a common word size for smaller computers in the 1960s, when large computers often used 36 bit words and 6-bit character sets, sometimes implemented a ...
word (
PDP-9,
PDP-15),
or three characters into one
16-bit word (
PDP-11, VAX).
The actual encoding differs between the 36-bit and 16-bit systems.
36-bit systems
In 36-bit DEC systems RADIX 50 was commonly used in
symbol tables for assemblers or compilers which supported six-character symbol names from a 40-character alphabet. This left four bits to encode properties of the symbol.
For its similarities to the
SQUOZE encoding scheme used in
IBM's
SHARE Operating System for representing object code symbols, DEC's variant was also sometimes called DEC Squoze,
however, IBM SQUOZE packed six characters of a 50-character alphabet plus two additional flag bits into one 36-bit word.
RADIX 50 was not normally used in 36-bit systems for encoding ordinary character strings; file names were normally encoded as six
six-bit characters, and full ASCII strings as five seven-bit characters and one unused bit per 36-bit word.
18-bit systems
RADIX 50 (also called Radix 50
8 format
) was used in Digital's 18-bit PDP-9 and PDP-15 computers to store symbols in symbol tables, leaving two extra bits per 18-bit word ("symbol classification bits").
16-bit systems
Some strings in DEC's 16-bit systems were encoded as 8-bit bytes, while others used RADIX 50 (then also called MOD40).
In RADIX 50, strings were encoded in successive words as needed, with the first character within each word located in the most significant position.
For example, using the PDP-11 encoding, the string "ABCDEF", with character values 1, 2, 3, 4, 5, and 6, would be encoded as a word containing the value 1×40
2 + 2×40
1 + 3×40
0 = , followed by a second word containing the value 4×40
2 + 5×40
1 + 6×40
0 = . Thus, 16-bit words encoded values ranging from 0 (three spaces) to ("999"). When there were fewer than three characters in a word, the last word for the string was padded with trailing spaces.
There were several minor variations of this encoding. For example, the
RT-11 operating system considered the character corresponding to value () to be undefined,
and some utility programs used that value to represent the character instead.
The use of RADIX 50 was the source of the filename size conventions used by
Digital Equipment Corporation
Digital Equipment Corporation (DEC ), using the trademark Digital, was a major American company in the computer industry from the 1960s to the 1990s. The company was co-founded by Ken Olsen and Harlan Anderson in 1957. Olsen was president unti ...
PDP-11 operating systems. Using RADIX 50 encoding, six characters of a filename could be stored in two 16-bit words, while three more extension (file type) characters could be stored in a third 16-bit word. The period that separated the filename and its extension was implied (i.e., was not stored and always assumed to be present). RADIX 50 was also commonly used in the
symbol tables of the various PDP-11
programming language
A programming language is a system of notation for writing computer programs. Most programming languages are text-based formal languages, but they may also be graphical. They are a kind of computer language.
The description of a programming l ...
s.
See also
*
Packed BCD
*
Hertz encoding
*
Chen–Ho encoding
*
Densely packed decimal (DPD)
*
Six-bit character code
*
Base 40
There are many different numeral systems, that is, writing systems for expressing numbers.
By culture / time period
By type of notation
Numeral systems are classified here as to whether they use positional notation (also known as place-val ...
*
Base conversion
*
Split octal
Syllabic octal and split octal are two similar notations for 8-bit and 16-bit octal numbers, respectively, used in some historical contexts.
Syllabic octal
''Syllabic octal'' is an 8-bit octal number representation that was used by English Elec ...
References
Further reading
*
External links
* https://github.com/turbo/ptt-its/blob/master/doc/info/midas.25
{{DEFAULTSORT:Radix-50
Character encoding
Character sets
Digital Equipment Corporation