shithub: rgbds

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