shithub: rgbds

ref: 179e04747499b9ae132b46bab7c41a050ca52f55
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)