shithub: rgbds

ref: 9ce8a9f5f09d126a7885c500df108cf98b157e57
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)