shithub: rgbds

ref: 91a3c538d96c3dfac7f304a0b8f4a35e386f3d77
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)