shithub: rgbds

ref: 6662c86d5e886e08aae178a1f9748a7339e0658e
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)