mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
17 lines
207 B
Lua
17 lines
207 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
repeat 100 {
|
|
cx16.r0++
|
|
if cx16.r0!=0
|
|
goto mylabel
|
|
}
|
|
|
|
mylabel:
|
|
|
|
}
|
|
}
|