shithub: rgbds

ref: 5a0fcda4c83b2ee3918655a5f5c393613fea50fe
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)