mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
15 lines
255 B
Plaintext
15 lines
255 B
Plaintext
// target-independent things
|
|
|
|
#if ARCH_6502
|
|
import stdlib_6502
|
|
#elseif ARCH_I80
|
|
import stdlib_i80
|
|
#elseif ARCH_X86
|
|
#warn 8086 is a partially supported architecture
|
|
import stdlib_i80
|
|
#endif
|
|
|
|
#if PAL && NTSC
|
|
#warn PAL and NTSC enabled simultaneously
|
|
#endif
|