Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (15 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_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Dependency_checking_unit/src/Dependency_checking_unit.cpp

    r81 r88  
    3939    log_printf(FUNC,Dependency_checking_unit,FUNCTION,"Begin");
    4040
     41#if DEBUG_Dependency_checking_unit == true
     42    log_printf(INFO,Dependency_checking_unit,FUNCTION,_("<%s> Parameters"),_name.c_str());
     43
     44    std::cout << *param << std::endl;
     45#endif   
     46
    4147    log_printf(INFO,Dependency_checking_unit,FUNCTION,"Allocation");
    4248
     
    4854
    4955#ifdef STATISTICS
    50     if (_usage & USE_STATISTICS)
     56    if (usage_is_set(_usage,USE_STATISTICS))
    5157      {
    5258        log_printf(INFO,Dependency_checking_unit,FUNCTION,"Allocation of statistics");
     
    5763
    5864#ifdef VHDL
    59     if (_usage & USE_VHDL)
     65    if (usage_is_set(_usage,USE_VHDL))
    6066      {
    6167        // generate the vhdl
     
    6773
    6874#ifdef SYSTEMC
    69     if (_usage & USE_SYSTEMC)
     75    if (usage_is_set(_usage,USE_SYSTEMC))
    7076      {
    7177# if defined(STATISTICS) or defined(VHDL_TESTBENCH)
     
    8692        SC_METHOD (genMealy);
    8793        dont_initialize ();
    88         sensitive << (*(in_CLOCK)).neg();
     94//      sensitive << (*(in_CLOCK)).neg(); // don't need internal register
    8995        for (uint32_t i=0;i<_param->_nb_inst_insert; i++)
    9096          {
     
    221227
    222228#ifdef STATISTICS
    223     if (_usage & USE_STATISTICS)
     229    if (usage_is_set(_usage,USE_STATISTICS))
    224230      {
    225231        log_printf(INFO,Dependency_checking_unit,FUNCTION,"Generate Statistics file");
Note: See TracChangeset for help on using the changeset viewer.