shithub: rgbds

ref: c3641321d7a71e3c4759b3e22209454a363c85bb
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)