shithub: rgbds

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