shithub: rgbds

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