mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
15 lines
243 B
Lua
15 lines
243 B
Lua
%import textio
|
|
%zeropage dontuse
|
|
|
|
main {
|
|
sub start() {
|
|
uword empty
|
|
uword block = memory("block", 500, 0)
|
|
|
|
txt.print_uwhex(&empty, true)
|
|
txt.nl()
|
|
txt.print_uwhex(block, true)
|
|
txt.nl()
|
|
}
|
|
}
|