shithub: rgbds

ref: 138523570e1b8a6a4e45f5c64a4335807c37c657
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)