mirror of
https://github.com/cc65/cc65.git
synced 2026-04-24 14:17:23 +00:00
Check for wrong header file inclusions, add CBM510 stuff
git-svn-id: svn://svn.cc65.org/cc65/trunk@948 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
+12
-1
@@ -30,9 +30,20 @@
|
||||
/* */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
#ifndef _ATARI_H
|
||||
#define _ATARI_H
|
||||
|
||||
|
||||
|
||||
/* Check for errors */
|
||||
#if !defined(__ATARI__)
|
||||
# error This module may only be used when compiling for the Atari!
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/* Character codes */
|
||||
#define CH_DEL 0xFE
|
||||
#define CH_ESC 0x1B
|
||||
@@ -96,7 +107,7 @@
|
||||
#define HUE_GREEN 12
|
||||
#define HUE_YELLOWGREEN 13
|
||||
#define HUE_YELLOW 14
|
||||
#define HUE_YELLOWRED 15
|
||||
#define HUE_YELLOWRED 15
|
||||
|
||||
/* Color defines, similar to c64 colors (untested) */
|
||||
#define COLOR_BLACK _gtia_mkcolor(HUE_GREY,0)
|
||||
|
||||
Reference in New Issue
Block a user