prog8/examples/test.p8
2024-01-22 22:01:47 +01:00

16 lines
284 B
Lua

%import textio
%zeropage dontuse
main {
sub start() {
ubyte @shared ubb = 99
uword @shared uww = 12345
ubyte[200] @shared barr
uword @shared ptr = memory("data", $2000, 0)
%breakpoint
txt.print_uwhex(sys.progend(), true)
}
}