shithub: rgbds

ref: 4c9a929a14d76609c26c06eeac0371d531f670c8
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)