prog8/examples/test.p8
2024-11-24 00:53:09 +01:00

13 lines
211 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
const long foo2 = $123456
txt.print_ubhex(bankof(foo2), true)
txt.spc()
txt.print_uwhex(foo2 &$ffff, false)
}
}