mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
20 lines
224 B
Lua
20 lines
224 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
txt.print("hello")
|
|
; foobar()
|
|
}
|
|
|
|
asmsub foobar() {
|
|
%asm {{
|
|
nop
|
|
rts
|
|
|
|
}}
|
|
}
|
|
}
|
|
|