shithub: rgbds

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