shithub: rgbds

ref: 6d9399e3a047a82b84f43d3ab5a2c51c30a5c4cf
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)