shithub: rgbds

ref: 210a4a957aebd605d8f79e39d1e6e5079c8c5cc9
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)