shithub: rgbds

ref: 822e4e7c44a8b7e1d1d2e2172f34ac57aec6a06e
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)