shithub: rgbds

ref: 66784b7122217c0f133a2e7e49cffbe88a374b0f
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)