shithub: rgbds

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