shithub: rgbds

ref: 0d31afaff8ad57ebcf48af8c9a27999c6a69096c
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)