1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00
millfork/include/stdlib.mfk
2018-12-19 19:01:53 +01:00

14 lines
208 B
Plaintext

// target-independent things
#if ARCH_6502
import stdlib_6502
#elseif ARCH_I80
import stdlib_i80
#else
#warn Unsupported architecture
#endif
#if PAL && NTSC
#warn PAL and NTSC enabled simultaneously
#endif