shithub: rgbds

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