shithub: rgbds

ref: 1d0c8fa113ba788ae41a977f30149113825e7b07
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)