Elliott 803

Elliott Telecode

Programs for the Elliott 803 were input using paper tape. The tapes were prepared off-line using teletype machines rather like these:

Teleprinter

Tapes were normally 5-hole which means 32 characters could be encoded. Character 0 was blank tape (or "runout") so that didn't really count, which left just 31 for the character set. 31 characters is not enough for even the uppercase letters and numbers so a shift system was used. One character (31) was the letter-shift and another (27) was the figure-shift. The tapes encoded letters following the letter-shift and numbers and a handful of symbols following the figure-shift. Only one shift was needed for any sequence of letters or figures, although extra (redundant) shifts were harmless. Sometimes errors in tapes could be corrected or patched up by over-typing letter-shifts (character 31 or "all holes") over unwanted characters.


Telecode Character Set

The 5 hole tape encoding used was unique to Elliotts. It consisted of the following characters:

01234567 89101112131415 1617181920212223 2425262728293031
LS BL ABCDEFGHI JKLMNOPQR STUVWXYZ FSSPCRLFLS
FS BL 12*4$=78' ,+:-.%0() 3?56/@9£ FSSPCRLFLS

BLBlank tape
FSFigure shift
SPSpace
CRCarriage Return
LFLine Feed
LSLetter shift

Telecode to Java Character Conversion

In a number of places the simulator needs to convert between the standard Java system characters and the Elliott telecode characters. This is done using some common conversion methods that convert according to the following rules.

Telecode To Java

Converting from telecode to Java is straight-forward since the small number of characters present in the telecode character set all convert easily to Java unicode characters.

The only character that might cause any issues is the telecode figure-shift 26 character which should be the GB currency pound sign (£). Since some character sets may not display this correctly most of the programs that perform telecode-to-Java conversion can take an option to force use of only the basic US-ASCII codeset. In this case the telecode figure-shift character 26 will be displayed as the number sign (#).

Java to Telecode

When converting from Java telecode it makes sense to allow a fairly liberal conversion of characters. In particular:

All other characters are silently ignored.


Tim Baldwin
December 2013
tjb803@tinymail.co.uk
Return to index

© Tim Baldwin 2009,2013