shithub: rgbds

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