shithub: rgbds

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