diff --git a/vm/nga-python/retro.py b/vm/nga-python/retro.py index 185e6a8..7e42f0a 100644 --- a/vm/nga-python/retro.py +++ b/vm/nga-python/retro.py @@ -303,21 +303,21 @@ def i_an(): global ip, memory, stack, address t = stack.pop() m = stack.pop() - stack.push(m &= t) + stack.push(m & t) def i_or(): global ip, memory, stack, address t = stack.pop() m = stack.pop() - stack.push(m |= t) + stack.push(m | t) def i_xo(): global ip, memory, stack, address t = stack.pop() m = stack.pop() - stack.push(m ^= t) + stack.push(m ^ t) def i_sh():