prog8/examples/test.p8

16 lines
245 B
Plaintext
Raw Normal View History

2023-03-22 21:00:21 +00:00
%import textio
%zeropage basicsafe
main {
2023-05-07 21:49:02 +00:00
2023-05-08 00:41:34 +00:00
word[5] dx = [111,222,333,444,555]
2023-05-07 23:03:54 +00:00
sub start() {
2023-05-08 00:41:34 +00:00
uword hit_x = 999
cx16.r0=2
uword new_head_x = hit_x + dx[cx16.r0L] as uword
txt.print_uw(new_head_x)
2023-03-18 23:24:05 +00:00
}
}