prog8/examples/test.p8

17 lines
189 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2020-12-08 00:02:38 +00:00
main {
2021-01-13 21:32:17 +00:00
sub start() {
2021-01-24 13:03:01 +00:00
uword xx
2021-01-25 22:41:49 +00:00
uword iter = 1000
2021-01-24 13:03:01 +00:00
repeat iter {
xx++
}
txt.print_uw(xx)
2021-01-10 14:15:00 +00:00
}
2020-08-27 17:47:50 +00:00
}