mirror of
https://github.com/irmen/prog8.git
synced 2024-11-29 17:50:35 +00:00
13 lines
176 B
Lua
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)
|
|
}
|
|
}
|
|
|