shithub: rgbds

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