shithub: rgbds

ref: 37089ef940a25e04f263233d5436b2d8b7ef3f70
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)