shithub: rgbds

ref: 50f091ab7ced12e76f458a7a55e961839b5c1e80
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)