prog8/examples/test.p8

14 lines
191 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
%option no_sysinit
%zeropage basicsafe
2024-10-18 20:22:34 +00:00
main {
sub start() {
2024-11-11 00:55:25 +00:00
cx16.r0=0
repeat 65536 {
cx16.r0++
}
txt.print_uw(cx16.r0)
2024-11-08 18:43:59 +00:00
}
}