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

16 lines
272 B
Plaintext

word rand_seed
#if ARCH_6502
import m6502/random_6502
#elseif ARCH_I80
import i80/random_i80
#elseif ARCH_X86
#warn 8086 is a partially supported architecture
import m6502/random_i80
#elseif ARCH_6809
import m6809/random_6809
#else
#warn Unsupported architecture
#endif