shithub: rgbds

ref: 2f16e82cf71d041043e6b8fcd8c49a9cdfae97a7
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)