shithub: rgbds

ref: 2f60e0a59ee72647d223c86d246a8ca4893c133f
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)