mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
The documentation states that == has the same precedence as the other comparison operators.
8 lines
95 B
NASM
8 lines
95 B
NASM
print: MACRO
|
|
printv \1
|
|
printt "\n"
|
|
ENDM
|
|
|
|
print 1 == 1 || 1 == 2
|
|
print (1 == 1) || (1 == 2)
|