prog8/examples/test.p8
2022-07-13 22:24:31 +02:00

13 lines
176 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
byte tx = 1
uword @shared zzzz= $2000 + (tx as ubyte)
txt.print_uwhex(zzzz,true)
}
}