shithub: rgbds

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