uasm 1.0.9+2.57

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

;--- there was a temporary problem in v2.07 with macro redefinitions,
;--- if the macro's type changed ( macro proc - macro function )

	.386
	.model flat

HRESULT_CODE macro hr
	exitm <( ( hr )  and  0FFFFh ) >
	endm

HRESULT_CODE macro
	movsx eax, ax
	endm

	.code
	HRESULT_CODE
	ret

	END