shithub: rgbds

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