shithub: rgbds

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