shithub: rgbds

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