shithub: rgbds

ref: 8034e567f1e94de9ae3cf1a2a6b90230fe865b7f
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)