shithub: rgbds

ref: 44124319a6f303893dd3c41f31d2c9f6ffaee3e0
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)