shithub: rgbds

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