shithub: rgbds

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