shithub: rgbds

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