More __NES__ stuff

git-svn-id: svn://svn.cc65.org/cc65/trunk@2126 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-05-02 14:45:16 +00:00
parent 9a883b6766
commit e967591be1

View File

@ -59,14 +59,16 @@
#endif
/* Include the correct machine specific file */
#if defined(__CBM__) && !defined(_CBM_H)
# include <cbm.h>
#elif defined(__APPLE2__) && !defined(_APPLE2_H)
#if defined(__APPLE2__) && !defined(_APPLE2_H)
# include <apple2.h>
#elif defined(__ATARI__) && !defined(_ATARI_H)
# include <atari.h>
#elif defined(__ATMOS__) && !defined(_ATMOS_H)
# include <atmos.h>
#elif defined(__CBM__) && !defined(_CBM_H)
# include <cbm.h>
#elif defined(__NES__) && !defined(_NES_H)
# include <nes.h>
#endif