shithub: rgbds

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