prog8/examples/test.p8

19 lines
342 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
%option no_sysinit
2024-10-27 20:50:48 +00:00
%zeropage basicsafe
2024-10-18 20:22:34 +00:00
main {
romsub @bank 10 $C09F = audio_init()
romsub @bank 5 $A000 = hiram_routine()
sub start() {
; put an rts in hiram bank 5 to not crash
cx16.rambank(5)
@($a000) = $60
cx16.rambank(0)
2024-11-03 19:39:44 +00:00
audio_init()
hiram_routine()
}
}