shithub: rgbds

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