shithub: rgbds

ref: 2bf3b08d762545c5e1b24ebcd73d63fbd09aa63b
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)