shithub: rgbds

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