shithub: rgbds

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