From 597f571c0645a71dd43580a67e010ecceded1b1b Mon Sep 17 00:00:00 2001 From: crc Date: Wed, 18 Nov 2020 20:23:55 +0000 Subject: [PATCH] nga-python: fix a syntax error FossilOrigin-Name: dbc4aa2f6945cdc76b26c177ad4ae368773dec9141b2be5a4b767435d8c09ef0 --- vm/nga-python/retro.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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():