shithub: rgbds

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