prog8/examples/test.p8

26 lines
318 B
Plaintext
Raw Normal View History

2019-07-01 21:41:30 +00:00
%zeropage basicsafe
2019-03-29 01:13:28 +00:00
2019-07-29 21:11:13 +00:00
main {
sub start() {
2019-08-01 19:22:42 +00:00
byte bb=10
while bb<15 {
bb++
c64scr.print_b(bb)
c64.CHROUT('\n')
}
word ww=5
while ww > -5 {
ww--
c64scr.print_w(ww)
c64.CHROUT('\n')
}
2019-07-22 16:58:55 +00:00
}
}