shithub: rgbds

ref: 69a8c628631d48b8b04d6fa3029248a2f8ece72b
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)