shithub: rgbds

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