shithub: rgbds

ref: 46a402f7d76dd90b668bc79c9d11b0f9f0c98e44
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)