mirror of
https://github.com/irmen/prog8.git
synced 2025-02-06 01:30:23 +00:00
17 lines
193 B
Lua
17 lines
193 B
Lua
%zeropage basicsafe
|
|
|
|
main {
|
|
uword w1
|
|
uword w2
|
|
|
|
sub start() {
|
|
bool zz = (w1 & w2)==0
|
|
|
|
if (w1 & w2)
|
|
w1++
|
|
|
|
if not(w1 & w2)
|
|
w1++
|
|
}
|
|
}
|