prog8/examples/test.p8

16 lines
278 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
%option no_sysinit
2024-10-27 20:50:48 +00:00
%zeropage basicsafe
2024-10-18 20:22:34 +00:00
main {
sub start() {
if cx16.r0L==0 {
uword[] scores = [10, 25, 50, 100] ; can never clear more than 4 lines at once
txt.print_uw(scores[1])
txt.nl()
}
}
}