shithub: rgbds

ref: 76331d1c4aa0c5b71b17a4a6471d54dd48bc5604
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)