mirror of
https://github.com/irmen/prog8.git
synced 2024-11-01 15:07:10 +00:00
17 lines
198 B
Lua
17 lines
198 B
Lua
main {
|
|
sub start() {
|
|
asmfunc("text")
|
|
func("text")
|
|
}
|
|
|
|
asmsub asmfunc(str thing @AY) {
|
|
%asm {{
|
|
rts
|
|
}}
|
|
}
|
|
|
|
|
|
sub func(str thing) {
|
|
}
|
|
}
|