shithub: rgbds

ref: 17b9838c8fdf8f74edf741ac05a45affe0332089
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)