shithub: rgbds

ref: 1fb9f90f0f0d1a170910116c47d9d72c2e954ff9
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)