shithub: rgbds

ref: 8f2a894b886cb9020c7b837170d924c03cdd31d9
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)