shithub: rgbds

ref: cb0a882a311d94628b3197c1b9388203b25c92c5
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)