shithub: rgbds

ref: 175933d2b17af067905a982804ccd3a77b9d6ea0
dir: /test/asm/operator-precedence.asm/

View raw version
print: MACRO
	printv \1
	printt "\n"
ENDM

	print 1 == 1 || 1 == 2
	print (1 == 1) || (1 == 2)