shithub: rgbds

ref: 49bca8d588f1060367fc53d9ee8d668febc5faf7
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)