mirror of
https://github.com/cc65/cc65.git
synced 2024-12-21 20:29:24 +00:00
Add ORIC Atmos support
git-svn-id: svn://svn.cc65.org/cc65/trunk@2048 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
9f547a5a4d
commit
84be05bd55
@ -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 */
|
||||
@ -52,6 +56,19 @@
|
||||
#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 */
|
||||
|
@ -65,12 +65,14 @@
|
||||
# include <apple2.h>
|
||||
#elif defined(__ATARI__) && !defined(_ATARI_H)
|
||||
# include <atari.h>
|
||||
#elif defined(__ATMOS__) && !defined(_ATMOS_H)
|
||||
# include <atmos.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Functions */
|
||||
/* Functions */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user