shithub: rgbds

ref: 9e378ec5cfd5348f9bca89634686c247ca0f2cc5
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)