uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation

;--- anonymous labels in hll expressions didn't fully work prior to v2.06

	.386
	.MODEL FLAT, stdcall
	option casemap:none

	.code

	mov eax, @F
	xor ecx, ecx
	.if ( eax == @F )
		inc ecx
	.endif
@@:
	.if ( eax == @F || eax == @B )
		inc ecx
	.endif
@@:
	end