shithub: rgbds

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