shithub: rgbds

ref: 0759c98d913e3d4d21207a8886a319c85add2041
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)