Merge pull request #8728 from yoni206/patch-1

Change NOT to ~
This commit is contained in:
chriseth
2020-04-28 18:59:54 +02:00
committed by GitHub
+3
View File
@@ -45,6 +45,9 @@ def AND(x, y):
def OR(x, y):
return x | y
def NOT(x):
return ~(x)
def SHL(x, y):
return y << x