Ignore:
Timestamp:
Jan 30, 2008, 12:08:19 PM (16 years ago)
Author:
rosiere
Message:

add two component :

  • Write Queue (in Moore version)
  • Execute Queue

add macro to help the interface allocation : Allocation.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Types.h

    r72 r73  
    5656  };
    5757
     58  inline Tcontext_t get_num_thread (Tcontext_t num_context_id ,
     59                                    uint32_t   size_context_id,
     60                                    Tcontext_t num_front_end_id ,
     61                                    uint32_t   size_front_end_id,
     62                                    Tcontext_t num_ooo_engine_id ,
     63                                    uint32_t   size_ooo_engine_id)
     64  {
     65    return ((num_ooo_engine_id << (size_context_id + size_front_end_id)) |
     66            (num_front_end_id  << (size_context_id)) |
     67            (num_context_id));
     68  }
     69                                   
     70
    5871
    5972}; // end namespace behavioural
Note: See TracChangeset for help on using the changeset viewer.