shithub: rgbds

ref: 04e7af2675b7287ace31a625f62e5d34695f60d4
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)