shithub: rgbds

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