shithub: rgbds

ref: 2a734ecba2f37553749b8720e0ad8cb4b3198902
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)