shithub: rgbds

ref: 9d2d5cfcfe4d647cb0a8a5363653e05b115f9940
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)