mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
1541ad2160
reset multiply bit at end of verafx.muls
15 lines
257 B
Lua
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()
|
|
}
|
|
}
|