shithub: rgbds

ref: 62ecdce0b0db976894f88336f1fa7f257a77e950
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)