shithub: rgbds

ref: 9bec983923411bb41ecf8af8ea116e342e0cb2d0
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)