shithub: rgbds

ref: 65121e6d5d2b9cb15283a0d5c46addeb67d20a7b
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)