shithub: rgbds

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