Word 00H (Sentinel) — A single null byte (80H = 00H + 80H) that serves as both the sentinel entry in the word table and the last byte of error table entry 64. Word index 00H is never printed; it is caught by the JR Z at 4D51H.
4E74
DEFB 80H 80
Sentinel: byte 80H = 00H with bit 7 set. This 1-byte "word" is the null terminator for word index 00H. The character value after stripping bit 7 is 00H (non-printable). The high bit (bit 7 = 1) marks this as both the first and last byte of this word.
Word 01H (1) — "ERROR"
4E75
DEFM 'ERRO' 45 52 52 4F
ASCII characters: 45H=E, 52H=R, 52H=R, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E79
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "ERROR". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 02H (2) — "READ"
4E7A
DEFM 'REA' 52 45 41
ASCII characters: 52H=R, 45H=E, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E7D
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "READ". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 03H (3) — "WRITE"
4E7E
DEFM 'WRIT' 57 52 49 54
ASCII characters: 57H=W, 52H=R, 49H=I, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E82
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "WRITE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 04H (4) — "DURING"
4E83
DEFM 'DURIN' 44 55 52 49 4E
ASCII characters: 44H=D, 55H=U, 52H=R, 49H=I, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E88
DEFB C7H C7
Final character: byte C7H = ASCII G (47H) with bit 7 set. The raw byte C7H = 47H OR 80H. Bit 7 = 1 marks this as the last character of word "DURING". The display routine strips bit 7 with AND 7FH to recover the printable character G before calling ROM 0033H.
Word 05H (5) — "FILE"
4E89
DEFM 'FIL' 46 49 4C
ASCII characters: 46H=F, 49H=I, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E8C
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "FILE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 06H (6) — "ILLEGAL"
4E8D
DEFM 'ILLEGA' 49 4C 4C 45 47 41
ASCII characters: 49H=I, 4CH=L, 4CH=L, 45H=E, 47H=G, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E93
DEFB CCH CC
Final character: byte CCH = ASCII L (4CH) with bit 7 set. The raw byte CCH = 4CH OR 80H. Bit 7 = 1 marks this as the last character of word "ILLEGAL". The display routine strips bit 7 with AND 7FH to recover the printable character L before calling ROM 0033H.
Word 07H (7) — "DIRECTORY"
4E94
DEFM 'DIRECTOR' 44 49 52 45 43 54 4F 52
ASCII characters: 44H=D, 49H=I, 52H=R, 45H=E, 43H=C, 54H=T, 4FH=O, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4E9C
DEFB D9H D9
Final character: byte D9H = ASCII Y (59H) with bit 7 set. The raw byte D9H = 59H OR 80H. Bit 7 = 1 marks this as the last character of word "DIRECTORY". The display routine strips bit 7 with AND 7FH to recover the printable character Y before calling ROM 0033H.
Word 08H (8) — "RECORD"
4E9D
DEFM 'RECOR' 52 45 43 4F 52
ASCII characters: 52H=R, 45H=E, 43H=C, 4FH=O, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EA2
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "RECORD". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 09H (9) — "NAME"
4EA3
DEFM 'NAM' 4E 41 4D
ASCII characters: 4EH=N, 41H=A, 4DH=M. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EA6
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "NAME". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 0AH (10) — "SPACE"
4EA7
DEFM 'SPAC' 53 50 41 43
ASCII characters: 53H=S, 50H=P, 41H=A, 43H=C. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EAB
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "SPACE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 0BH (11) — "DATA"
4EAC
DEFM 'DAT' 44 41 54
ASCII characters: 44H=D, 41H=A, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EAF
DEFB C1H C1
Final character: byte C1H = ASCII A (41H) with bit 7 set. The raw byte C1H = 41H OR 80H. Bit 7 = 1 marks this as the last character of word "DATA". The display routine strips bit 7 with AND 7FH to recover the printable character A before calling ROM 0033H.
Word 0CH (12) — "PARITY"
4EB0
DEFM 'PARIT' 50 41 52 49 54
ASCII characters: 50H=P, 41H=A, 52H=R, 49H=I, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EB5
DEFB D9H D9
Final character: byte D9H = ASCII Y (59H) with bit 7 set. The raw byte D9H = 59H OR 80H. Bit 7 = 1 marks this as the last character of word "PARITY". The display routine strips bit 7 with AND 7FH to recover the printable character Y before calling ROM 0033H.
Word 0DH (13) — "LOST"
4EB6
DEFM 'LOS' 4C 4F 53
ASCII characters: 4CH=L, 4FH=O, 53H=S. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EB9
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "LOST". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 0EH (14) — "SEEK"
4EBA
DEFM 'SEE' 53 45 45
ASCII characters: 53H=S, 45H=E, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EBD
DEFB CBH CB
Final character: byte CBH = ASCII K (4BH) with bit 7 set. The raw byte CBH = 4BH OR 80H. Bit 7 = 1 marks this as the last character of word "SEEK". The display routine strips bit 7 with AND 7FH to recover the printable character K before calling ROM 0033H.
Word 0FH (15) — "GAT"
4EBE
DEFM 'GA' 47 41
ASCII characters: 47H=G, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EC0
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "GAT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 10H (16) — "HIT"
4EC1
DEFM 'HI' 48 49
ASCII characters: 48H=H, 49H=I. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EC3
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "HIT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 11H (17) — "TRIED TO"
4EC4
DEFM 'TRIED T' 54 52 49 45 44 20 54
ASCII characters: 54H=T, 52H=R, 49H=I, 45H=E, 44H=D, 20H= , 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4ECB
DEFB CFH CF
Final character: byte CFH = ASCII O (4FH) with bit 7 set. The raw byte CFH = 4FH OR 80H. Bit 7 = 1 marks this as the last character of word "TRIED TO". The display routine strips bit 7 with AND 7FH to recover the printable character O before calling ROM 0033H.
Word 12H (18) — "NOT"
4ECC
DEFM 'NO' 4E 4F
ASCII characters: 4EH=N, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4ECE
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "NOT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 13H (19) — "NO"
4ECF
DEFM 'N' 4E
ASCII characters: 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4ED0
DEFB CFH CF
Final character: byte CFH = ASCII O (4FH) with bit 7 set. The raw byte CFH = 4FH OR 80H. Bit 7 = 1 marks this as the last character of word "NO". The display routine strips bit 7 with AND 7FH to recover the printable character O before calling ROM 0033H.
Word 14H (20) — "FULL"
4ED1
DEFM 'FUL' 46 55 4C
ASCII characters: 46H=F, 55H=U, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4ED4
DEFB CCH CC
Final character: byte CCH = ASCII L (4CH) with bit 7 set. The raw byte CCH = 4CH OR 80H. Bit 7 = 1 marks this as the last character of word "FULL". The display routine strips bit 7 with AND 7FH to recover the printable character L before calling ROM 0033H.
Word 15H (21) — "DEVICE"
4ED5
DEFM 'DEVIC' 44 45 56 49 43
ASCII characters: 44H=D, 45H=E, 56H=V, 49H=I, 43H=C. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EDA
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "DEVICE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 16H (22) — "AVAILABLE"
4EDB
DEFM 'AVAILABL' 41 56 41 49 4C 41 42 4C
ASCII characters: 41H=A, 56H=V, 41H=A, 49H=I, 4CH=L, 41H=A, 42H=B, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EE3
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "AVAILABLE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 17H (23) — "DISK"
4EE4
DEFM 'DIS' 44 49 53
ASCII characters: 44H=D, 49H=I, 53H=S. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EE7
DEFB CBH CB
Final character: byte CBH = ASCII K (4BH) with bit 7 set. The raw byte CBH = 4BH OR 80H. Bit 7 = 1 marks this as the last character of word "DISK". The display routine strips bit 7 with AND 7FH to recover the printable character K before calling ROM 0033H.
Word 18H (24) — "DRIVE"
4EE8
DEFM 'DRIV' 44 52 49 56
ASCII characters: 44H=D, 52H=R, 49H=I, 56H=V. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EEC
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "DRIVE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 19H (25) — "ON"
4EED
DEFM 'O' 4F
ASCII characters: 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EEE
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "ON". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 1AH (26) — "IN"
4EEF
DEFM 'I' 49
ASCII characters: 49H=I. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EF0
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "IN". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 1BH (27) — "OR"
4EF1
DEFM 'O' 4F
ASCII characters: 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EF2
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "OR". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 1CH (28) — "OF"
4EF3
DEFM 'O' 4F
ASCII characters: 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EF4
DEFB C6H C6
Final character: byte C6H = ASCII F (46H) with bit 7 set. The raw byte C6H = 46H OR 80H. Bit 7 = 1 marks this as the last character of word "OF". The display routine strips bit 7 with AND 7FH to recover the printable character F before calling ROM 0033H.
Word 1DH (29) — ". "
4EF5
DEFM '.' 2E
ASCII characters: 2EH=.. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EF6
DEFB A0H A0
Final character: byte A0H = ASCII (20H) with bit 7 set. The raw byte A0H = 20H OR 80H. Bit 7 = 1 marks this as the last character of word ". ". The display routine strips bit 7 with AND 7FH to recover the printable character before calling ROM 0033H.
Word 1EH (30) — "#"
4EF7
DEFB A3H A3
Single-character word: byte A3H = ASCII # (23H) with bit 7 set. The raw byte A3H = 23H OR 80H. Bit 7 = 1 marks this as the last (and only) character.
Word 1FH (31) — "OUT"
4EF8
DEFM 'OU' 4F 55
ASCII characters: 4FH=O, 55H=U. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EFA
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "OUT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 20H (32) — "END"
4EFB
DEFM 'EN' 45 4E
ASCII characters: 45H=E, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4EFD
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "END". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 21H (33) — "DOS"
4EFE
DEFM 'DO' 44 4F
ASCII characters: 44H=D, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F00
DEFB D3H D3
Final character: byte D3H = ASCII S (53H) with bit 7 set. The raw byte D3H = 53H OR 80H. Bit 7 = 1 marks this as the last character of word "DOS". The display routine strips bit 7 with AND 7FH to recover the printable character S before calling ROM 0033H.
Word 22H (34) — "BAD"
4F01
DEFM 'BA' 42 41
ASCII characters: 42H=B, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F03
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "BAD". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 23H (35) — "FCB"
4F04
DEFM 'FC' 46 43
ASCII characters: 46H=F, 43H=C. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F06
DEFB C2H C2
Final character: byte C2H = ASCII B (42H) with bit 7 set. The raw byte C2H = 42H OR 80H. Bit 7 = 1 marks this as the last character of word "FCB". The display routine strips bit 7 with AND 7FH to recover the printable character B before calling ROM 0033H.
Word 24H (36) — "TOO"
4F07
DEFM 'TO' 54 4F
ASCII characters: 54H=T, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F09
DEFB CFH CF
Final character: byte CFH = ASCII O (4FH) with bit 7 set. The raw byte CFH = 4FH OR 80H. Bit 7 = 1 marks this as the last character of word "TOO". The display routine strips bit 7 with AND 7FH to recover the printable character O before calling ROM 0033H.
Word 25H (37) — "VIA"
4F0A
DEFM 'VI' 56 49
ASCII characters: 56H=V, 49H=I. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F0C
DEFB C1H C1
Final character: byte C1H = ASCII A (41H) with bit 7 set. The raw byte C1H = 41H OR 80H. Bit 7 = 1 marks this as the last character of word "VIA". The display routine strips bit 7 with AND 7FH to recover the printable character A before calling ROM 0033H.
Word 26H (38) — "OPEN"
4F0D
DEFM 'OPE' 4F 50 45
ASCII characters: 4FH=O, 50H=P, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F10
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "OPEN". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 27H (39) — "LOAD"
4F11
DEFM 'LOA' 4C 4F 41
ASCII characters: 4CH=L, 4FH=O, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F14
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "LOAD". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 28H (40) — "ONLY"
4F15
DEFM 'ONL' 4F 4E 4C
ASCII characters: 4FH=O, 4EH=N, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F18
DEFB D9H D9
Final character: byte D9H = ASCII Y (59H) with bit 7 set. The raw byte D9H = 59H OR 80H. Bit 7 = 1 marks this as the last character of word "ONLY". The display routine strips bit 7 with AND 7FH to recover the printable character Y before calling ROM 0033H.
Word 29H (41) — "CODE"
4F19
DEFM 'COD' 43 4F 44
ASCII characters: 43H=C, 4FH=O, 44H=D. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F1C
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "CODE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 2AH (42) — "BOOT"
4F1D
DEFM 'BOO' 42 4F 4F
ASCII characters: 42H=B, 4FH=O, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F20
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "BOOT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 2BH (43) — "TYPE"
4F21
DEFM 'TYP' 54 59 50
ASCII characters: 54H=T, 59H=Y, 50H=P. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F24
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "TYPE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 2CH (44) — "MINI"
4F25
DEFM 'MIN' 4D 49 4E
ASCII characters: 4DH=M, 49H=I, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F28
DEFB C9H C9
Final character: byte C9H = ASCII I (49H) with bit 7 set. The raw byte C9H = 49H OR 80H. Bit 7 = 1 marks this as the last character of word "MINI". The display routine strips bit 7 with AND 7FH to recover the printable character I before calling ROM 0033H.
Word 2DH (45) — "LONG"
4F29
DEFM 'LON' 4C 4F 4E
ASCII characters: 4CH=L, 4FH=O, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F2C
DEFB C7H C7
Final character: byte C7H = ASCII G (47H) with bit 7 set. The raw byte C7H = 47H OR 80H. Bit 7 = 1 marks this as the last character of word "LONG". The display routine strips bit 7 with AND 7FH to recover the printable character G before calling ROM 0033H.
Word 2EH (46) — "PAST"
4F2D
DEFM 'PAS' 50 41 53
ASCII characters: 50H=P, 41H=A, 53H=S. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F30
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "PAST". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 2FH (47) — "HIGH"
4F31
DEFM 'HIG' 48 49 47
ASCII characters: 48H=H, 49H=I, 47H=G. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F34
DEFB C8H C8
Final character: byte C8H = ASCII H (48H) with bit 7 set. The raw byte C8H = 48H OR 80H. Bit 7 = 1 marks this as the last character of word "HIGH". The display routine strips bit 7 with AND 7FH to recover the printable character H before calling ROM 0033H.
Word 30H (48) — "HEADER"
4F35
DEFM 'HEADE' 48 45 41 44 45
ASCII characters: 48H=H, 45H=E, 41H=A, 44H=D, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F3A
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "HEADER". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 31H (49) — "FOUND"
4F3B
DEFM 'FOUN' 46 4F 55 4E
ASCII characters: 46H=F, 4FH=O, 55H=U, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F3F
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "FOUND". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 32H (50) — "FAULT"
4F40
DEFM 'FAUL' 46 41 55 4C
ASCII characters: 46H=F, 41H=A, 55H=U, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F44
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "FAULT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 33H (51) — "RANGE"
4F45
DEFM 'RANG' 52 41 4E 47
ASCII characters: 52H=R, 41H=A, 4EH=N, 47H=G. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F49
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "RANGE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 34H (52) — "TRACK"
4F4A
DEFM 'TRAC' 54 52 41 43
ASCII characters: 54H=T, 52H=R, 41H=A, 43H=C. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F4E
DEFB CBH CB
Final character: byte CBH = ASCII K (4BH) with bit 7 set. The raw byte CBH = 4BH OR 80H. Bit 7 = 1 marks this as the last character of word "TRACK". The display routine strips bit 7 with AND 7FH to recover the printable character K before calling ROM 0033H.
Word 35H (53) — "COUNT"
4F4F
DEFM 'COUN' 43 4F 55 4E
ASCII characters: 43H=C, 4FH=O, 55H=U, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F53
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "COUNT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 36H (54) — "CAN'T"
4F54
DEFM 'CAN'' 43 41 4E 27
ASCII characters: 43H=C, 41H=A, 4EH=N, 27H='. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F58
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "CAN'T". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 37H (55) — "UNDER"
4F59
DEFM 'UNDE' 55 4E 44 45
ASCII characters: 55H=U, 4EH=N, 44H=D, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F5D
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "UNDER". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 38H (56) — "WRONG"
4F5E
DEFM 'WRON' 57 52 4F 4E
ASCII characters: 57H=W, 52H=R, 4FH=O, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F62
DEFB C7H C7
Final character: byte C7H = ASCII G (47H) with bit 7 set. The raw byte C7H = 47H OR 80H. Bit 7 = 1 marks this as the last character of word "WRONG". The display routine strips bit 7 with AND 7FH to recover the printable character G before calling ROM 0033H.
Word 39H (57) — "FATAL"
4F63
DEFM 'FATA' 46 41 54 41
ASCII characters: 46H=F, 41H=A, 54H=T, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F67
DEFB CCH CC
Final character: byte CCH = ASCII L (4CH) with bit 7 set. The raw byte CCH = 4CH OR 80H. Bit 7 = 1 marks this as the last character of word "FATAL". The display routine strips bit 7 with AND 7FH to recover the printable character L before calling ROM 0033H.
Word 3AH (58) — "ASE=N"
4F68
DEFM 'ASE=' 41 53 45 3D
ASCII characters: 41H=A, 53H=S, 45H=E, 3DH==. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F6C
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "ASE=N". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 3BH (59) — "EXISTS"
4F6D
DEFM 'EXIST' 45 58 49 53 54
ASCII characters: 45H=E, 58H=X, 49H=I, 53H=S, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F72
DEFB D3H D3
Final character: byte D3H = ASCII S (53H) with bit 7 set. The raw byte D3H = 53H OR 80H. Bit 7 = 1 marks this as the last character of word "EXISTS". The display routine strips bit 7 with AND 7FH to recover the printable character S before calling ROM 0033H.
Word 3CH (60) — "SYSTEM"
4F73
DEFM 'SYSTE' 53 59 53 54 45
ASCII characters: 53H=S, 59H=Y, 53H=S, 54H=T, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F78
DEFB CDH CD
Final character: byte CDH = ASCII M (4DH) with bit 7 set. The raw byte CDH = 4DH OR 80H. Bit 7 = 1 marks this as the last character of word "SYSTEM". The display routine strips bit 7 with AND 7FH to recover the printable character M before calling ROM 0033H.
Word 3DH (61) — "DENIED"
4F79
DEFM 'DENIE' 44 45 4E 49 45
ASCII characters: 44H=D, 45H=E, 4EH=N, 49H=I, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F7E
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "DENIED". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 3EH (62) — "ACCESS"
4F7F
DEFM 'ACCES' 41 43 43 45 53
ASCII characters: 41H=A, 43H=C, 43H=C, 45H=E, 53H=S. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F84
DEFB D3H D3
Final character: byte D3H = ASCII S (53H) with bit 7 set. The raw byte D3H = 53H OR 80H. Bit 7 = 1 marks this as the last character of word "ACCESS". The display routine strips bit 7 with AND 7FH to recover the printable character S before calling ROM 0033H.
Word 3FH (63) — "EXTEND"
4F85
DEFM 'EXTEN' 45 58 54 45 4E
ASCII characters: 45H=E, 58H=X, 54H=T, 45H=E, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F8A
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "EXTEND". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 40H (64) — "MEMORY"
4F8B
DEFM 'MEMOR' 4D 45 4D 4F 52
ASCII characters: 4DH=M, 45H=E, 4DH=M, 4FH=O, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F90
DEFB D9H D9
Final character: byte D9H = ASCII Y (59H) with bit 7 set. The raw byte D9H = 59H OR 80H. Bit 7 = 1 marks this as the last character of word "MEMORY". The display routine strips bit 7 with AND 7FH to recover the printable character Y before calling ROM 0033H.
Word 41H (65) — "FORMAT"
4F91
DEFM 'FORMA' 46 4F 52 4D 41
ASCII characters: 46H=F, 4FH=O, 52H=R, 4DH=M, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F96
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "FORMAT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 42H (66) — "PROGRAM"
4F97
DEFM 'PROGRA' 50 52 4F 47 52 41
ASCII characters: 50H=P, 52H=R, 4FH=O, 47H=G, 52H=R, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4F9D
DEFB CDH CD
Final character: byte CDH = ASCII M (4DH) with bit 7 set. The raw byte CDH = 4DH OR 80H. Bit 7 = 1 marks this as the last character of word "PROGRAM". The display routine strips bit 7 with AND 7FH to recover the printable character M before calling ROM 0033H.
Word 43H (67) — "LOGICAL"
4F9E
DEFM 'LOGICA' 4C 4F 47 49 43 41
ASCII characters: 4CH=L, 4FH=O, 47H=G, 49H=I, 43H=C, 41H=A. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FA4
DEFB CCH CC
Final character: byte CCH = ASCII L (4CH) with bit 7 set. The raw byte CCH = 4CH OR 80H. Bit 7 = 1 marks this as the last character of word "LOGICAL". The display routine strips bit 7 with AND 7FH to recover the printable character L before calling ROM 0033H.
Word 44H (68) — "DISKETTE"
4FA5
DEFM 'DISKETT' 44 49 53 4B 45 54 54
ASCII characters: 44H=D, 49H=I, 53H=S, 4BH=K, 45H=E, 54H=T, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FAC
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "DISKETTE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 45H (69) — "DOS-CALL"
4FAD
DEFM 'DOS-CAL' 44 4F 53 2D 43 41 4C
ASCII characters: 44H=D, 4FH=O, 53H=S, 2DH=-, 43H=C, 41H=A, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FB4
DEFB CCH CC
Final character: byte CCH = ASCII L (4CH) with bit 7 set. The raw byte CCH = 4CH OR 80H. Bit 7 = 1 marks this as the last character of word "DOS-CALL". The display routine strips bit 7 with AND 7FH to recover the printable character L before calling ROM 0033H.
Word 46H (70) — "PROTECTED"
4FB5
DEFM 'PROTECTE' 50 52 4F 54 45 43 54 45
ASCII characters: 50H=P, 52H=R, 4FH=O, 54H=T, 45H=E, 43H=C, 54H=T, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FBD
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "PROTECTED". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 47H (71) — "FUNCTION"
4FBE
DEFM 'FUNCTIO' 46 55 4E 43 54 49 4F
ASCII characters: 46H=F, 55H=U, 4EH=N, 43H=C, 54H=T, 49H=I, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FC5
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "FUNCTION". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 48H (72) — "CHAINING"
4FC6
DEFM 'CHAININ' 43 48 41 49 4E 49 4E
ASCII characters: 43H=C, 48H=H, 41H=A, 49H=I, 4EH=N, 49H=I, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FCD
DEFB C7H C7
Final character: byte C7H = ASCII G (47H) with bit 7 set. The raw byte C7H = 47H OR 80H. Bit 7 = 1 marks this as the last character of word "CHAINING". The display routine strips bit 7 with AND 7FH to recover the printable character G before calling ROM 0033H.
Word 49H (73) — "UNDEFINED"
4FCE
DEFM 'UNDEFINE' 55 4E 44 45 46 49 4E 45
ASCII characters: 55H=U, 4EH=N, 44H=D, 45H=E, 46H=F, 49H=I, 4EH=N, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FD6
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "UNDEFINED". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 4AH (74) — "INITIALIZATION"
4FD7
DEFM 'INITIALIZATIO' 49 4E 49 54 49 41 4C 49 5A 41 54 49 4F
ASCII characters: 49H=I, 4EH=N, 49H=I, 54H=T, 49H=I, 41H=A, 4CH=L, 49H=I, 5AH=Z, 41H=A, 54H=T, 49H=I, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FE4
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "INITIALIZATION". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 4BH (75) — "ENCOUNTERED"
4FE5
DEFM 'ENCOUNTERE' 45 4E 43 4F 55 4E 54 45 52 45
ASCII characters: 45H=E, 4EH=N, 43H=C, 4FH=O, 55H=U, 4EH=N, 54H=T, 45H=E, 52H=R, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FEF
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "ENCOUNTERED". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 4CH (76) — "LOCKED/DELETED"
4FF0
DEFM 'LOCKED/DELETE' 4C 4F 43 4B 45 44 2F 44 45 4C 45 54 45
ASCII characters: 4CH=L, 4FH=O, 43H=C, 4BH=K, 45H=E, 44H=D, 2FH=/, 44H=D, 45H=E, 4CH=L, 45H=E, 54H=T, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
4FFD
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "LOCKED/DELETED". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 4DH (77) — "PARAMETER(S)"
4FFE
DEFM 'PARAMETER(S' 50 41 52 41 4D 45 54 45 52 28 53
ASCII characters: 50H=P, 41H=A, 52H=R, 41H=A, 4DH=M, 45H=E, 54H=T, 45H=E, 52H=R, 28H=(, 53H=S. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5009
DEFB A9H A9
Final character: byte A9H = ASCII ) (29H) with bit 7 set. The raw byte A9H = 29H OR 80H. Bit 7 = 1 marks this as the last character of word "PARAMETER(S)". The display routine strips bit 7 with AND 7FH to recover the printable character ) before calling ROM 0033H.
Word 4EH (78) — "FILESPEC"
500A
DEFM 'FILESPE' 46 49 4C 45 53 50 45
ASCII characters: 46H=F, 49H=I, 4CH=L, 45H=E, 53H=S, 50H=P, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5011
DEFB C3H C3
Final character: byte C3H = ASCII C (43H) with bit 7 set. The raw byte C3H = 43H OR 80H. Bit 7 = 1 marks this as the last character of word "FILESPEC". The display routine strips bit 7 with AND 7FH to recover the printable character C before calling ROM 0033H.
Word 4FH (79) — "ALREADY"
5012
DEFM 'ALREAD' 41 4C 52 45 41 44
ASCII characters: 41H=A, 4CH=L, 52H=R, 45H=E, 41H=A, 44H=D. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5018
DEFB D9H D9
Final character: byte D9H = ASCII Y (59H) with bit 7 set. The raw byte D9H = 59H OR 80H. Bit 7 = 1 marks this as the last character of word "ALREADY". The display routine strips bit 7 with AND 7FH to recover the printable character Y before calling ROM 0033H.
Word 50H (80) — "KEYWORD"
5019
DEFM 'KEYWOR' 4B 45 59 57 4F 52
ASCII characters: 4BH=K, 45H=E, 59H=Y, 57H=W, 4FH=O, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
501F
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "KEYWORD". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 51H (81) — "SEPARATOR"
5020
DEFM 'SEPARATO' 53 45 50 41 52 41 54 4F
ASCII characters: 53H=S, 45H=E, 50H=P, 41H=A, 52H=R, 41H=A, 54H=T, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5028
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "SEPARATOR". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 52H (82) — "TERMINATOR"
5029
DEFM 'TERMINATO' 54 45 52 4D 49 4E 41 54 4F
ASCII characters: 54H=T, 45H=E, 52H=R, 4DH=M, 49H=I, 4EH=N, 41H=A, 54H=T, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5032
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "TERMINATOR". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 53H (83) — "REQUIRE"
5033
DEFM 'REQUIR' 52 45 51 55 49 52
ASCII characters: 52H=R, 45H=E, 51H=Q, 55H=U, 49H=I, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5039
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "REQUIRE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 54H (84) — "TERMINATION"
503A
DEFM 'TERMINATIO' 54 45 52 4D 49 4E 41 54 49 4F
ASCII characters: 54H=T, 45H=E, 52H=R, 4DH=M, 49H=I, 4EH=N, 41H=A, 54H=T, 49H=I, 4FH=O. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5044
DEFB CEH CE
Final character: byte CEH = ASCII N (4EH) with bit 7 set. The raw byte CEH = 4EH OR 80H. Bit 7 = 1 marks this as the last character of word "TERMINATION". The display routine strips bit 7 with AND 7FH to recover the printable character N before calling ROM 0033H.
Word 55H (85) — "COMMAND"
5045
DEFM 'COMMAN' 43 4F 4D 4D 41 4E
ASCII characters: 43H=C, 4FH=O, 4DH=M, 4DH=M, 41H=A, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
504B
DEFB C4H C4
Final character: byte C4H = ASCII D (44H) with bit 7 set. The raw byte C4H = 44H OR 80H. Bit 7 = 1 marks this as the last character of word "COMMAND". The display routine strips bit 7 with AND 7FH to recover the printable character D before calling ROM 0033H.
Word 56H (86) — "OPERATOR/PROGRAM/PARAMETER"
504C
DEFM 'OPERATOR/PROGRAM/PARAMETE' 4F 50 45 52 41 54 4F 52 2F 50 52 4F 47 52 41 4D 2F 50 41 52 41 4D 45 54 45
ASCII characters: 4FH=O, 50H=P, 45H=E, 52H=R, 41H=A, 54H=T, 4FH=O, 52H=R, 2FH=/, 50H=P, 52H=R, 4FH=O, 47H=G, 52H=R, 41H=A, 4DH=M, 2FH=/, 50H=P, 41H=A, 52H=R, 41H=A, 4DH=M, 45H=E, 54H=T, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5065
DEFB D2H D2
Final character: byte D2H = ASCII R (52H) with bit 7 set. The raw byte D2H = 52H OR 80H. Bit 7 = 1 marks this as the last character of word "OPERATOR/PROGRAM/PARAMETER". The display routine strips bit 7 with AND 7FH to recover the printable character R before calling ROM 0033H.
Word 57H (87) — "MISSING"
5066
DEFM 'MISSIN' 4D 49 53 53 49 4E
ASCII characters: 4DH=M, 49H=I, 53H=S, 53H=S, 49H=I, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
506C
DEFB C7H C7
Final character: byte C7H = ASCII G (47H) with bit 7 set. The raw byte C7H = 47H OR 80H. Bit 7 = 1 marks this as the last character of word "MISSING". The display routine strips bit 7 with AND 7FH to recover the printable character G before calling ROM 0033H.
Word 58H (88) — "COMPARE"
506D
DEFM 'COMPAR' 43 4F 4D 50 41 52
ASCII characters: 43H=C, 4FH=O, 4DH=M, 50H=P, 41H=A, 52H=R. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5073
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "COMPARE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 59H (89) — "MISMATCH"
5074
DEFM 'MISMATC' 4D 49 53 4D 41 54 43
ASCII characters: 4DH=M, 49H=I, 53H=S, 4DH=M, 41H=A, 54H=T, 43H=C. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
507B
DEFB C8H C8
Final character: byte C8H = ASCII H (48H) with bit 7 set. The raw byte C8H = 48H OR 80H. Bit 7 = 1 marks this as the last character of word "MISMATCH". The display routine strips bit 7 with AND 7FH to recover the printable character H before calling ROM 0033H.
Word 5AH (90) — "INSUFFICIENT"
507C
DEFM 'INSUFFICIEN' 49 4E 53 55 46 46 49 43 49 45 4E
ASCII characters: 49H=I, 4EH=N, 53H=S, 55H=U, 46H=F, 46H=F, 49H=I, 43H=C, 49H=I, 45H=E, 4EH=N. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5087
DEFB D4H D4
Final character: byte D4H = ASCII T (54H) with bit 7 set. The raw byte D4H = 54H OR 80H. Bit 7 = 1 marks this as the last character of word "INSUFFICIENT". The display routine strips bit 7 with AND 7FH to recover the printable character T before calling ROM 0033H.
Word 5BH (91) — "INCOMPATIBLE"
5088
DEFM 'INCOMPATIBL' 49 4E 43 4F 4D 50 41 54 49 42 4C
ASCII characters: 49H=I, 4EH=N, 43H=C, 4FH=O, 4DH=M, 50H=P, 41H=A, 54H=T, 49H=I, 42H=B, 4CH=L. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5093
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "INCOMPATIBLE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.
Word 5CH (92) — "DRIVES"
5094
DEFM 'DRIVE' 44 52 49 56 45
ASCII characters: 44H=D, 52H=R, 49H=I, 56H=V, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
5099
DEFB D3H D3
Final character: byte D3H = ASCII S (53H) with bit 7 set. The raw byte D3H = 53H OR 80H. Bit 7 = 1 marks this as the last character of word "DRIVES". The display routine strips bit 7 with AND 7FH to recover the printable character S before calling ROM 0033H.
Word 5DH (93) — "DISKETTES"
509A
DEFM 'DISKETTE' 44 49 53 4B 45 54 54 45
ASCII characters: 44H=D, 49H=I, 53H=S, 4BH=K, 45H=E, 54H=T, 54H=T, 45H=E. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
50A2
DEFB D3H D3
Final character: byte D3H = ASCII S (53H) with bit 7 set. The raw byte D3H = 53H OR 80H. Bit 7 = 1 marks this as the last character of word "DISKETTES". The display routine strips bit 7 with AND 7FH to recover the printable character S before calling ROM 0033H.
Word 5EH (94) — "ATTRIBUTE"
50A3
DEFM 'ATTRIBUT' 41 54 54 52 49 42 55 54
ASCII characters: 41H=A, 54H=T, 54H=T, 52H=R, 49H=I, 42H=B, 55H=U, 54H=T. Each byte has bit 7 clear (= 0), indicating these are not the last character of the word.
50AB
DEFB C5H C5
Final character: byte C5H = ASCII E (45H) with bit 7 set. The raw byte C5H = 45H OR 80H. Bit 7 = 1 marks this as the last character of word "ATTRIBUTE". The display routine strips bit 7 with AND 7FH to recover the printable character E before calling ROM 0033H.