shithub: rgbds

ref: 6d4b128611cee85bb8955dc1964e61848c3ffdca
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)