1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Minor fixes for the new apple2enh target

git-svn-id: svn://svn.cc65.org/cc65/trunk@2924 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-03-13 23:17:19 +00:00
parent 0358a14d1f
commit 847e1c62eb
2 changed files with 9 additions and 5 deletions

View File

@ -44,7 +44,7 @@
/* If not already done, include the apple2.h header file */
#if !defined(_APPLE2_H)
# include <apple2enh.h>
# include <apple2.h>
#endif

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 1998-2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 1998-2004 Ullrich von Bassewitz */
/* Römerstraße 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -61,6 +61,8 @@
/* Include the correct machine specific file */
#if defined(__APPLE2__) && !defined(_APPLE2_H)
# include <apple2.h>
#elif defined(__APPLE2ENH__) && !defined(_APPLE2ENH_H)
# include <apple2enh.h>
#elif defined(__ATARI__) && !defined(_ATARI_H)
# include <atari.h>
#elif defined(__ATMOS__) && !defined(_ATMOS_H)
@ -69,6 +71,8 @@
# include <cbm.h>
#elif defined(__NES__) && !defined(_NES_H)
# include <nes.h>
#else
# error "Unknown platform in conio.h"
#endif