shithub: rgbds

ref: dab5f59ed9b1aefddb035e6938df1440c7dec46f
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)