shithub: rgbds

ref: 3b62bd0bce8ca9986e8f49f1e56f91c2d2c873e6
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)