shithub: rgbds

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