shithub: rgbds

ref: 03e20138d37722ba2a9c9a22d36f45262adf0348
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)