prog8/examples/test.p8
2023-10-29 02:57:21 +01:00

15 lines
226 B
Lua

%import textio
%import math
%option no_sysinit
%zeropage basicsafe
main {
sub start() {
ubyte lower = 123
ubyte upper = 0
uword ww = mkword(upper, lower)
txt.print_uwhex(ww, true)
}
}