shithub: rgbds

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