shithub: rgbds

ref: 1e3ce2a36f651641b9158a476dd65ebda0978b83
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)