mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
13 lines
211 B
Lua
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)
|
|
|
|
}
|
|
}
|