prog8/examples/test.p8

15 lines
243 B
Plaintext
Raw Normal View History

2023-12-09 20:48:22 +00:00
%import textio
%zeropage dontuse
2023-12-09 20:48:22 +00:00
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()
}
}