shithub: rgbds

ref: 319d775c13adcf219b9c5f3d76c53508e7271b3d
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)