prog8/examples/test.p8

15 lines
195 B
Plaintext
Raw Normal View History

2024-02-26 23:02:42 +00:00
%import math
%import textio
2024-02-22 16:13:07 +00:00
%zeropage dontuse
%option no_sysinit
main {
2024-02-25 04:02:50 +00:00
sub start() {
2024-02-27 20:34:58 +00:00
if cx16.r0s > 0
2024-02-27 01:37:03 +00:00
cx16.r1L++
2024-02-27 20:34:58 +00:00
if cx16.r0s <= 0
2024-02-27 01:37:03 +00:00
cx16.r1L++
2024-02-26 23:02:42 +00:00
}
2024-02-22 22:39:31 +00:00
}
2024-02-25 04:02:50 +00:00