mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +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:
parent
0358a14d1f
commit
847e1c62eb
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user