shithub: rgbds

ref: 0157ba63d3b124ee508d88ad74f7c68caac6804c
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)