shithub: rgbds

ref: 26af2bff5e3d379d8b9a46baed8bcb9b96b32745
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)