shithub: rgbds

ref: 5013b64f556fa8b185b09f23cf7f71908c4cd48b
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)