shithub: rgbds

ref: 6c57ad2226e44a936701b7bcc965c73363b0337c
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)