shithub: rgbds

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