mirror of
https://github.com/irmen/prog8.git
synced 2024-11-01 15:07:10 +00:00
21 lines
354 B
Lua
21 lines
354 B
Lua
%import textio
|
|
%import string
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
|
|
|
|
sub start() {
|
|
txt.print_uwhex(memory("a", 100), 1)
|
|
txt.nl()
|
|
txt.print_uwhex(memory("a", 200), 1)
|
|
txt.nl()
|
|
txt.print_uwhex(memory("a", 200), 1)
|
|
txt.nl()
|
|
txt.print_uwhex(memory("b", 200), 1)
|
|
txt.nl()
|
|
}
|
|
|
|
}
|