shithub: rgbds

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