mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 01:31:55 +00:00
Handle high 128 chars equal to lower ones
git-svn-id: svn://svn.cc65.org/cc65/trunk@2163 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
40609f0a3c
commit
93d37754fc
@ -1,4 +1,4 @@
|
|||||||
;
|
;
|
||||||
; Stefan Haubenthal with minor changes from Ullrich von Bassewitz, 2003-05-02
|
; Stefan Haubenthal with minor changes from Ullrich von Bassewitz, 2003-05-02
|
||||||
;
|
;
|
||||||
; Character specification table.
|
; Character specification table.
|
||||||
@ -23,7 +23,9 @@
|
|||||||
;
|
;
|
||||||
; * We save some code in the isxxx functions.
|
; * We save some code in the isxxx functions.
|
||||||
|
|
||||||
|
|
||||||
__ctype:
|
__ctype:
|
||||||
|
.repeat 2
|
||||||
.byte CT_CTRL ; 0/00 ___ctrl_@___
|
.byte CT_CTRL ; 0/00 ___ctrl_@___
|
||||||
.byte CT_CTRL ; 1/01 ___ctrl_A___
|
.byte CT_CTRL ; 1/01 ___ctrl_A___
|
||||||
.byte CT_CTRL ; 2/02 ___ctrl_B___
|
.byte CT_CTRL ; 2/02 ___ctrl_B___
|
||||||
@ -154,10 +156,6 @@ __ctype:
|
|||||||
.byte $00 ; 125/7d _____}_____
|
.byte $00 ; 125/7d _____}_____
|
||||||
.byte $00 ; 126/7e _____~_____
|
.byte $00 ; 126/7e _____~_____
|
||||||
.byte CT_OTHER_WS ; 127/7f ____DEL____
|
.byte CT_OTHER_WS ; 127/7f ____DEL____
|
||||||
|
.endrepeat
|
||||||
; The upper 128 characters are actually unused on the Apple, we wil encode
|
|
||||||
; them as "other printable"
|
|
||||||
|
|
||||||
.res 128, $00
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user