shithub: rgbds

ref: 51e225cd751c23602b7d99e851f19358e2c40957
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)