shithub: rgbds

ref: 446173f0cb54ce6f0b5be43e984b6ccde905260c
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)