; Definition der Bitdaten für die ASCII-Zeichen ; von 0 bis 127 am Ende des Code-Segments ; ; Aufbau der Zeichen in einer 8 x 5 Matrix ; ASCII-Zeichen '4' und die Zuordnung zu Port A ; ; 0|0|0|1|0 - A0 ; 0|0|1|1|0 - A1 ; 0|1|0|1|0 - A2 ; 1|0|0|1|0 - A3 ; 1|1|1|1|1 - A4 ; 0|0|0|1|0 - A5 ; 0|0|0|1|0 - A6 ; 0|0|0|0|0 - A7 ; ; Definiert an der Speicher-Stelle 0xE84: ;.DB 0x18, 0x14, 0x12, 0x7f, 0x10 ; ; Adressberechnung des Ersten der fünf Bytes wie folgt: ; ; adr = ascii * 5 + 0xd80 ; ; Zeichen 0 bis 7 .DB 0x0e, 0x11, 0x7e, 0x88, 0x70, 0x0e, 0x11, 0x2e, 0x10, 0xf8 ; NULL und SOH .DB 0x0e, 0x11, 0x9e, 0xc8, 0xb0, 0x0e, 0x11, 0x8e, 0xa8, 0x50 ; STX und ETX .DB 0x0e, 0x11, 0x3e, 0xe0, 0x20, 0x0e, 0x11, 0xbe, 0xa8, 0x48 ; EOT und ENQ .DB 0x0e, 0x11, 0x7e, 0xa8, 0x68, 0x30, 0x1c, 0x42, 0x1c, 0x30 ; ACK und BEL ; Zeichen 8 bis 15 .DB 0x1f, 0x15, 0x9a, 0xa8, 0x48, 0x0e, 0x11, 0xbe, 0xa8, 0x78 ; BS und HT .DB 0x1f, 0x10, 0xf8, 0x28, 0x08, 0x0e, 0x11, 0xfe, 0xa8, 0x50 ; LF und VT .DB 0x1f, 0x05, 0xf9, 0x28, 0x08, 0x0e, 0x11, 0xfa, 0x28, 0xd0 ; FF und CR .DB 0x0e, 0x11, 0xfe, 0xa8, 0x88, 0x0e, 0x11, 0xfe, 0x28, 0x08 ; SO und SI ; Zeichen 16 bis 23 .DB 0x02, 0x1f, 0x70, 0x88, 0x70, 0x02, 0x1f, 0x10, 0xf8, 0x00 ; DLE und DC1 .DB 0x02, 0x1f, 0x90, 0xc8, 0xb0, 0x01, 0x1f, 0x88, 0xa8, 0x50 ; DC2 und DC3 .DB 0x02, 0x1f, 0x38, 0xe0, 0x20, 0x02, 0x1f, 0xb8, 0xa8, 0x48 ; DC4 und NAK .DB 0x02, 0x1f, 0x70, 0xa8, 0x48, 0x02, 0x1f, 0x88, 0x48, 0x38 ; SYN und ETB ; Zeichen 24 bis 31 .DB 0x02, 0x1f, 0x50, 0xa8, 0x50, 0x02, 0x1f, 0x90, 0xa8, 0x78 ; CAN und EM .DB 0x02, 0x1f, 0xf0, 0x28, 0xf0, 0x02, 0x1f, 0xf8, 0xa8, 0x50 ; SUB und ESC .DB 0x02, 0x1f, 0x70, 0x88, 0x88, 0x02, 0x1f, 0xf8, 0x88, 0x70 ; FS und GS .DB 0x02, 0x1f, 0xf8, 0xa8, 0x88, 0x02, 0x1f, 0xf8, 0x28, 0x08 ; RS und US ; Zeichen 32 bis 39 .DB 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00 ; SPACE und ! .DB 0x00, 0x07, 0x00, 0x07, 0x00, 0x14, 0x7f, 0x14, 0x7f, 0x14 ; " und # .DB 0x24, 0x2a, 0x7f, 0x2a, 0x12, 0x23, 0x13, 0x08, 0x64, 0x62 ; $ und % .DB 0x36, 0x49, 0x55, 0x22, 0x50, 0x00, 0x05, 0x03, 0x00, 0x00 ; & und ' ; Zeichen 40 bis 47 .DB 0x00, 0x1c, 0x22, 0x41, 0x00, 0x00, 0x41, 0x22, 0x1c, 0x00 ; ( und ) .DB 0x14, 0x08, 0x3e, 0x08, 0x14, 0x08, 0x08, 0x3e, 0x08, 0x08 ; * und + .DB 0x00, 0xb0, 0x70, 0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08 ; , und - .DB 0x00, 0x60, 0x60, 0x00, 0x00, 0x20, 0x10, 0x08, 0x04, 0x02 ; . und / ; Zeichen 48 bis 55 .DB 0x3e, 0x51, 0x49, 0x45, 0x3e, 0x00, 0x42, 0x7f, 0x40, 0x00 ; 0 und 1 .DB 0x42, 0x61, 0x51, 0x49, 0x46, 0x21, 0x41, 0x45, 0x4b, 0x31 ; 2 und 3 .DB 0x18, 0x14, 0x12, 0x7f, 0x10, 0x27, 0x45, 0x45, 0x45, 0x39 ; 4 und 5 .DB 0x3c, 0x4a, 0x49, 0x49, 0x30, 0x01, 0x01, 0x79, 0x05, 0x03 ; 6 und 7 ; Zeichen 56 bis 63 .DB 0x36, 0x49, 0x49, 0x49, 0x36, 0x06, 0x49, 0x49, 0x29, 0x1e ; 8 und 9 .DB 0x00, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0xac, 0x6c, 0x00, 0x00 ; : und ; .DB 0x08, 0x14, 0x22, 0x41, 0x00, 0x14, 0x14, 0x14, 0x14, 0x14 ; < und = .DB 0x41, 0x22, 0x14, 0x08, 0x00, 0x02, 0x01, 0x51, 0x09, 0x06 ; > und ? ; Zeichen 64 bis 71 .DB 0x32, 0x49, 0x79, 0x41, 0x3e, 0x7e, 0x09, 0x09, 0x09, 0x7e ; @ und A .DB 0x7f, 0x49, 0x49, 0x49, 0x36, 0x3e, 0x41, 0x41, 0x41, 0x22 ; B und C .DB 0x7f, 0x41, 0x41, 0x22, 0x1c, 0x7f, 0x49, 0x49, 0x49, 0x41 ; D und E .DB 0x7f, 0x09, 0x09, 0x09, 0x01, 0x3e, 0x41, 0x49, 0x49, 0x7a ; F und G ; Zeichen 72 bis 79 .DB 0x7f, 0x08, 0x08, 0x08, 0x7f, 0x00, 0x41, 0x7f, 0x41, 0x00 ; H und I .DB 0x20, 0x41, 0x41, 0x3f, 0x01, 0x7f, 0x08, 0x14, 0x22, 0x41 ; J und K .DB 0x7f, 0x40, 0x40, 0x40, 0x40, 0x7f, 0x02, 0x0c, 0x02, 0x7f ; L und M .DB 0x7f, 0x04, 0x08, 0x10, 0x7f, 0x3e, 0x41, 0x41, 0x41, 0x3e ; N und O ; Zeichen 80 bis 87 .DB 0x7f, 0x09, 0x09, 0x09, 0x06, 0x3e, 0x41, 0x51, 0x21, 0x5e ; P und Q .DB 0x7f, 0x09, 0x19, 0x29, 0x46, 0x46, 0x49, 0x49, 0x49, 0x31 ; R und S .DB 0x01, 0x01, 0x7f, 0x01, 0x01, 0x3f, 0x40, 0x40, 0x40, 0x3f ; T und U .DB 0x1f, 0x20, 0x40, 0x20, 0x1f, 0x3f, 0x40, 0x38, 0x40, 0x3f ; V und W ; Zeichen 88 bis 95 .DB 0x63, 0x14, 0x08, 0x14, 0x63, 0x07, 0x08, 0x70, 0x08, 0x07 ; X und Y .DB 0x61, 0x51, 0x49, 0x45, 0x43, 0x00, 0x7f, 0x41, 0x41, 0x00 ; Z und [ .DB 0x02, 0x04, 0x08, 0x10, 0x20, 0x00, 0x41, 0x41, 0x7f, 0x00 ; \ und ] .DB 0x04, 0x02, 0x01, 0x02, 0x04, 0x80, 0x80, 0x80, 0x80, 0x80 ; ^ und _ ; Zeichen 96 bis 103 .DB 0x00, 0x01, 0x02, 0x04, 0x00, 0x20, 0x54, 0x54, 0x54, 0x78 ; ` und a .DB 0x7f, 0x48, 0x44, 0x44, 0x38, 0x38, 0x44, 0x44, 0x44, 0x20 ; b und c .DB 0x38, 0x44, 0x44, 0x48, 0x7f, 0x38, 0x54, 0x54, 0x54, 0x18 ; d und e .DB 0x08, 0xfe, 0x09, 0x09, 0x02, 0x18, 0xa4, 0xa4, 0xa4, 0x7c ; f und g ; Zeichen 104 bis 111 .DB 0x7f, 0x08, 0x04, 0x04, 0x78, 0x00, 0x44, 0x7d, 0x40, 0x00 ; h und i .DB 0x40, 0x80, 0x84, 0x7d, 0x00, 0x7f, 0x10, 0x28, 0x44, 0x00 ; j und k .DB 0x00, 0x41, 0x7f, 0x40, 0x00, 0x7c, 0x04, 0x18, 0x04, 0x78 ; l und m .DB 0x7c, 0x08, 0x04, 0x04, 0x78, 0x38, 0x44, 0x44, 0x44, 0x38 ; n und o ; Zeichen 112 bis 119 .DB 0xfc, 0x24, 0x24, 0x24, 0x18, 0x18, 0x24, 0x24, 0x28, 0xfc ; p und q .DB 0x7c, 0x08, 0x04, 0x04, 0x08, 0x48, 0x54, 0x54, 0x54, 0x20 ; r und s .DB 0x04, 0x3f, 0x44, 0x40, 0x20, 0x3c, 0x40, 0x40, 0x20, 0x7c ; t und u .DB 0x1c, 0x20, 0x40, 0x20, 0x1c, 0x3c, 0x40, 0x30, 0x40, 0x3c ; v und w ; Zeichen 120 bis 127 .DB 0x44, 0x28, 0x10, 0x28, 0x44, 0x1c, 0xa0, 0xa0, 0xa0, 0x7c ; x und y .DB 0x44, 0x64, 0x54, 0x4c, 0x44, 0x00, 0x08, 0x36, 0x41, 0x00 ; z und { .DB 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x41, 0x36, 0x08, 0x00 ; | und } .DB 0x02, 0x01, 0x02, 0x04, 0x02, 0x1f, 0x05, 0xf9, 0x28, 0x08 ; ~ und DEL ;