prog8/examples/test.p8
Irmen de Jong 1541ad2160 fix variable init order mistake in program startup
reset multiply bit at end of verafx.muls
2024-09-28 19:17:45 +02:00

15 lines
257 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
ubyte @shared @nozp value1 = 99
ubyte @shared @requirezp value2 = 42
sub start() {
txt.print_ub(value1)
txt.nl()
txt.print_ub(value2)
txt.nl()
}
}