shithub: rgbds

ref: 3564b3f9eae6caa1ae0504d6a76cfbf46e578efe
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)