shithub: rgbds

ref: 29623c41463fb1e1486b763d9d15d6a23c36b77e
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)