shithub: rgbds

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