shithub: rgbds

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