]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/ctype.s
atari5200: name conio constructor 'initconio'
[cc65] / libsrc / pce / ctype.s
index fa9a65c8b175e3029a842b3a30d40bef5e63f3c0..1ee51b23070c5131e4b2553e439203d74b83f17b 100644 (file)
@@ -6,15 +6,15 @@
 
         .include        "ctype.inc"
 
-; The tables are readonly, put them into the rodata segment
+; The tables are read-only; put them into the RODATA segment.
 
 .rodata
 
-; The following 256 byte wide table specifies attributes for the isxxx type
+; The following 256-byte-wide table specifies attributes for the isxxx type
 ; of functions. Doing it by a table means some overhead in space, but it
 ; has major advantages:
 ;
-;   * It is fast. If it were'nt for the slow parameter passing of cc65, one
+;   * It is fast. If it weren't for the slow parameter passing of cc65, one
 ;     could even define macros for the isxxx functions (this is usually
 ;     done on other platforms).
 ;
@@ -23,7 +23,6 @@
 ;
 ;   * We save some code in the isxxx functions.
 
-
 __ctype:
         .repeat 2
         .byte   CT_CTRL                 ;   0/00 ___ctrl_@___
@@ -157,5 +156,3 @@ __ctype:
         .byte   CT_NONE                 ; 126/7e _____~_____
         .byte   CT_OTHER_WS             ; 127/7f ____DEL____
         .endrepeat
-
-