shithub: rgbds

ref: 14731c0a1dc7f4e0154a46e823dfca7c1ea2b522
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)