shithub: rgbds

ref: 18c47843f1c4ed3e9c480559bccf5f8a059ddd97
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)