mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-22 03:02:06 +00:00
12 lines
150 B
C
12 lines
150 B
C
// sdcc -c -msm83 -o b.rel b.c
|
|
|
|
#ifdef __SDCC_sm83
|
|
const int sm83 = 1;
|
|
#else
|
|
const int sm83 = 0;
|
|
#endif
|
|
|
|
int function0(int de) {
|
|
return de | sm83;
|
|
}
|