Re-worked the makefiles and includes to target z80 and gbz80 as well
[fw/sdcc] / device / include / sdcc-lib.h
1 /** Top level header file for the sdcc libraries that enables target
2     specific features.
3 */
4 #ifndef __SDC51_SDCC_LIB_H
5 #define __SDC51_SDCC_LIB_H      1
6
7 #if defined(__z80)
8 #include <asm/z80/features.h>
9
10 #elif defined(__gbz80)
11 #include <asm/gbz80/features.h>
12
13 #else
14 /* PENDING */
15 #include <asm/default/features.h>
16
17 #endif
18
19 #endif