shithub: rgbds

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