1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-11 12:29:46 +00:00
millfork/include/stdlib.mfk

17 lines
312 B
Plaintext
Raw Normal View History

2017-12-07 00:23:30 +01:00
// target-independent things
#if ARCH_6502
import m6502/stdlib_6502
#elseif ARCH_I80
import i80/stdlib_i80
2019-05-31 17:03:35 +02:00
#elseif ARCH_X86
#warn 8086 is a partially supported architecture
import i80/stdlib_i80
#elseif ARCH_6809
import m6809/stdlib_6809
#endif
2018-12-19 19:01:53 +01:00
#if PAL && NTSC
#warn PAL and NTSC enabled simultaneously
#endif