shithub: rgbds

ref: 9738c88f957e51ff6834c0382b73bf7331fa25b2
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)