shithub: rgbds

ref: 65fc42cce50de0a5039e703f6be568a29e23e213
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)