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/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic.cpp

    r81 r88  
    3333    log_printf(FUNC,RegisterFile_Monolithic,"RegisterFile_Monolithic","Begin");
    3434
     35#if DEBUG_RegisterFile_Monolithic == true
     36    log_printf(INFO,RegisterFile_Monolithic,FUNCTION,_("<%s> Parameters"),_name.c_str());
     37
     38    std::cout << *param << std::endl;
     39#endif   
     40
    3541    log_printf(INFO,RegisterFile_Monolithic,"RegisterFile_Monolithic","Allocation");
    3642    allocation ();
    3743
    3844#ifdef STATISTICS
    39     if (_usage & USE_STATISTICS)
     45    if (usage_is_set(_usage,USE_STATISTICS))
    4046      statistics_declaration(param_statistics);
    4147#endif
     
    4753
    4854#ifdef SYSTEMC
    49     if (_usage & USE_SYSTEMC)
     55    if (usage_is_set(_usage,USE_SYSTEMC))
    5056      {
    5157        SC_METHOD (transition);
     
    102108  {
    103109#ifdef STATISTICS
    104     if (_usage & USE_STATISTICS)
     110    if (usage_is_set(_usage,USE_STATISTICS))
    105111      delete _stat;
    106112#endif
Note: See TracChangeset for help on using the changeset viewer.