Change the precedence of == to match the documentation

The documentation states that == has the same precedence as the other
comparison operators.
This commit is contained in:
dbrotz
2019-08-20 08:50:18 -07:00
parent e33e6e2413
commit c2787a9ea9
4 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
print: MACRO
printv \1
printt "\n"
ENDM
print 1 == 1 || 1 == 2
print (1 == 1) || (1 == 2)