shithub: rgbds

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