Files
rgbds/test/link/sdcc/good/b.c
2024-08-20 17:51:01 -04:00

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;
}