shithub: rgbds

ref: 230f849229f8443703ab281bd1f1cd3ef4eb6d6e
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)