shithub: rgbds

ref: 2220f19fa717ee7fd18838f87ead8a1ef5d308fb
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)