mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 19:29:50 +00:00
64c132ee0a
also fixed a IR issue with x=not x.
16 lines
284 B
Lua
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)
|
|
}
|
|
}
|