From 93d37754fc18099c15069900f660fc1f963c04fd Mon Sep 17 00:00:00 2001 From: cuz Date: Thu, 22 May 2003 22:24:59 +0000 Subject: [PATCH] Handle high 128 chars equal to lower ones git-svn-id: svn://svn.cc65.org/cc65/trunk@2163 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/apple2/ctype.s | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libsrc/apple2/ctype.s b/libsrc/apple2/ctype.s index 203b59e5d..c951a1727 100644 --- a/libsrc/apple2/ctype.s +++ b/libsrc/apple2/ctype.s @@ -1,4 +1,4 @@ -; +; ; Stefan Haubenthal with minor changes from Ullrich von Bassewitz, 2003-05-02 ; ; Character specification table. @@ -23,7 +23,9 @@ ; ; * We save some code in the isxxx functions. + __ctype: + .repeat 2 .byte CT_CTRL ; 0/00 ___ctrl_@___ .byte CT_CTRL ; 1/01 ___ctrl_A___ .byte CT_CTRL ; 2/02 ___ctrl_B___ @@ -154,10 +156,6 @@ __ctype: .byte $00 ; 125/7d _____}_____ .byte $00 ; 126/7e _____~_____ .byte CT_OTHER_WS ; 127/7f ____DEL____ - -; The upper 128 characters are actually unused on the Apple, we wil encode -; them as "other printable" - - .res 128, $00 + .endrepeat