]> git.sur5r.net Git - cc65/commitdiff
Add ORIC Atmos support
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 13 Apr 2003 22:12:40 +0000 (22:12 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 13 Apr 2003 22:12:40 +0000 (22:12 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2048 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/atmos.h
include/conio.h

index c7a5e82d161a481c44c665cdffc3c69fe4d5cc80..489268e706cd92bbc6192699f07cdd19a5150adc 100644 (file)
@@ -6,7 +6,11 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2002  Debrune Jérome, <jede@oric.org>                                */
+/* (C) 2002      Debrune Jérome, <jede@oric.org>                            */
+/* (C) 2003      Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 #define COLOR_CYAN     0x06
 #define COLOR_WHITE    0x07
 
+/* Character codes */
+#define CH_ULCORNER    '+'
+#define CH_URCORNER    '+'
+#define CH_LLCORNER    '+'
+#define CH_LRCORNER    '+'
+#define CH_TTEE        '+'
+#define CH_BTEE        '+'
+#define CH_LTEE        '+'
+#define CH_RTEE        '+'
+#define CH_CROSS       '+'
+
+
+
 
 
 /* End of atmos.h */
index 71bd74023665adb9ad71a5a5ae98ea4d290f1d96..cd6c65e9facbe87b3148369c33979275ea780e5f 100644 (file)
 #  include <apple2.h>
 #elif defined(__ATARI__) && !defined(_ATARI_H)
 #  include <atari.h>
+#elif defined(__ATMOS__) && !defined(_ATMOS_H)
+#  include <atmos.h>
 #endif
 
 
 
 /*****************************************************************************/
-/*                                Functions                                 */
+/*                                Functions                                 */
 /*****************************************************************************/