]> git.sur5r.net Git - cc65/commitdiff
fixed 2 typos: one in a comment, the other one in the CH_EOL definition
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 6 Oct 2000 23:35:56 +0000 (23:35 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 6 Oct 2000 23:35:56 +0000 (23:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@344 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/atari.h

index 99b5d1f5b564a4f861e23b66246de07ed0d74e34..8afa647a5f1b5699169def42d9d6079c8b3d7a1d 100644 (file)
@@ -33,7 +33,7 @@
 #ifndef _ATARI_H
 #define _ATARI_H
 
-/* Characters codes */
+/* Character codes */
 #define CH_DEL                 0xFE
 #define CH_ESC                 0x1B
 #define CH_CURS_UP     28
@@ -42,7 +42,7 @@
 #define CH_CURS_RIGHT   31
 
 #define CH_TAB          0x7F   /* tabulator */
-#define CH_EOL          0x0B   /* end-of-line marker */
+#define CH_EOL          0x9B   /* end-of-line marker */
 #define CH_CLR          0x7D   /* clear screen */
 #define CH_BEL          0xFD   /* bell */
 #define CH_RUBOUT       0x7E   /* back space (rubout) */