shithub: rgbds

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