shithub: rgbds

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