shithub: rgbds

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