shithub: rgbds

ref: 56bea083f966306c49156d38f5c5d15d010994e9
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)