shithub: rgbds

ref: 7437f7eb85d39e6f00d89eb26ec44007166c7d34
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)