shithub: rgbds

ref: 8c91b31ae6f35fb26eee327d0d47feac95959f8e
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)