shithub: rgbds

ref: 359a048b6e235aab6e330fc6f85b118da0e9e046
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)