mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-10 17:09:58 +00:00
14 lines
213 B
Plaintext
14 lines
213 B
Plaintext
|
|
word rand_seed
|
|
|
|
#if ARCH_6502
|
|
import random_6502
|
|
#elseif ARCH_I80
|
|
import random_i80
|
|
#elseif ARCH_X86
|
|
#warn 8086 is a partially supported architecture
|
|
import random_i80
|
|
#else
|
|
#warn Unsupported architecture
|
|
#endif
|