shithub: rgbds

ref: 95f347dc6a646b82d9e988bf36a011c8f01f7082
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)