Ignore:
Timestamp:
Apr 20, 2009, 11:29:17 PM (15 years ago)
Author:
rosiere
Message:

1) Write queue with mealy
2) Network : fix bug
3) leak memory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/src/Parameters.cpp

    r113 r115  
    2020#undef  FUNCTION
    2121#define FUNCTION "Write_queue::Parameters"
    22   Parameters::Parameters (uint32_t size_queue         ,
    23                           uint32_t nb_context         ,
    24                           uint32_t nb_front_end       ,
    25                           uint32_t nb_ooo_engine      ,
    26                           uint32_t nb_packet          ,
    27                           uint32_t size_general_data  ,
    28                           uint32_t nb_general_register,
    29                           uint32_t size_special_data  ,
    30                           uint32_t nb_special_register,
    31                           uint32_t nb_bypass_write    ,
    32                           bool     is_toplevel):
     22  Parameters::Parameters (uint32_t              size_queue         ,
     23                          uint32_t              nb_context         ,
     24                          uint32_t              nb_front_end       ,
     25                          uint32_t              nb_ooo_engine      ,
     26                          uint32_t              nb_packet          ,
     27                          uint32_t              size_general_data  ,
     28                          uint32_t              nb_general_register,
     29                          uint32_t              size_special_data  ,
     30                          uint32_t              nb_special_register,
     31                          uint32_t              nb_bypass_write    ,
     32                          Twrite_queue_scheme_t queue_scheme       ,
     33                          bool                  is_toplevel        ):
    3334    behavioural::Parameters ("Write_queue")
    3435  {
     
    4344    _nb_special_register     = nb_special_register;
    4445    _nb_bypass_write         = nb_bypass_write    ;
     46    _queue_scheme            = queue_scheme       ;
    4547
    4648    _nb_gpr_write            = 1;
Note: See TracChangeset for help on using the changeset viewer.