shithub: rgbds

ref: 598c923506a25e8e3a737e1e6d588a7404d4d221
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)