1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-28 13:41:31 +00:00
millfork/include/loader_0801_16bit.mfk

27 lines
311 B
Plaintext
Raw Normal View History

#if not(CBM)
#warn loader_0801_16bit module should be only used on Commodore targets
#endif
2019-08-15 23:09:03 +00:00
const array _basic_loader @$801 = [
$0b,
$08,
10,
0,
$9e,
$32,
$30,
$36,
$31,
0,
0,
0
]
asm void __init_16bit() @$80D {
clc
xce
sep #$30
jmp main
}