shithub: rgbds

ref: eb445271df55b5fc3a45b238f6944c5528158b5a
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)