prog8/examples/test.p8
2023-05-02 00:29:04 +02:00

20 lines
224 B
Lua

%import textio
%option no_sysinit
%zeropage basicsafe
main {
sub start() {
txt.print("hello")
; foobar()
}
asmsub foobar() {
%asm {{
nop
rts
}}
}
}