shithub: rgbds

ref: 874bd92604f4d33ff425af9f42e8e936f4269a01
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)