shithub: rgbds

ref: 6755a0912b7b1d36c0f3fcfb7d6e0455773c8a68
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)