1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-30 20:29:03 +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:
cuz 2003-05-22 22:24:59 +00:00
parent 40609f0a3c
commit 93d37754fc

View File

@ -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