shithub: rgbds

ref: 295fc6c61921f63f8525d14aaa595f4d67bf3427
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)