shithub: rgbds

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