shithub: rgbds

ref: 8e92383fa35e1955d891d1e6de9c70a8cc82ff25
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)