shithub: rgbds

ref: 5014f55c482c4c45f7bf09cb6a5a4aa37ffdb04f
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)