prog8/examples/test.p8

19 lines
337 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
main {
2022-11-07 23:06:43 +00:00
sub start() {
2022-11-11 22:35:52 +00:00
uword[] @shared ptrs = [&x1, &x2, &start, 4242, 4242]
ubyte x1
ubyte x2
txt.print_uwhex(ptrs[0], true)
txt.spc()
txt.print_uwhex(ptrs[1], true)
txt.spc()
txt.print_uwhex(ptrs[2], true)
txt.nl()
}
2022-09-18 14:04:49 +00:00
}