mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 22:33:12 +00:00
15 lines
195 B
Lua
15 lines
195 B
Lua
%import math
|
|
%import textio
|
|
%zeropage dontuse
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
if cx16.r0s > 0
|
|
cx16.r1L++
|
|
if cx16.r0s <= 0
|
|
cx16.r1L++
|
|
}
|
|
}
|
|
|