Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (16 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/src/Parameters.cpp

    r85 r88  
    1919#undef  FUNCTION
    2020#define FUNCTION "Ifetch_unit_Glue::Parameters"
    21   Parameters::Parameters (uint32_t size_address)
     21  Parameters::Parameters (uint32_t size_address,
     22                          bool     is_toplevel)
    2223  {
    2324    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
    2425
    25     _size_address = size_address;
     26    test();
    2627
    27     test();
     28    if (is_toplevel)
     29      {
     30        _size_instruction_address = size_address;
     31
     32        copy ();
     33      }
     34
    2835    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
    2936  };
     
    4653  };
    4754
     55#undef  FUNCTION
     56#define FUNCTION "Ifetch_unit_Glue::copy"
     57  void Parameters::copy (void)
     58  {
     59    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
     60    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
     61  };
     62
    4863}; // end namespace ifetch_unit_glue
    4964}; // end namespace ifetch_unit
Note: See TracChangeset for help on using the changeset viewer.