shithub: rgbds

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