shithub: rgbds

ref: 5863cd10b85c49fa0e3b2a1dd0997f0db7bde26b
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)