shithub: rgbds

ref: 8214f0c09db676e29db69b74aa945ab8cdc5d6ae
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)