mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-23 23:30:22 +00:00
14 lines
208 B
Plaintext
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
|