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_Execute_loop/Execute_loop/src/Execute_loop.cpp

    r81 r88  
    3636    log_printf(FUNC,Execute_loop,FUNCTION,"Begin");
    3737
     38#if DEBUG_Execute_loop == true
     39    log_printf(INFO,Execute_loop,FUNCTION,_("<%s> Parameters"),_name.c_str());
     40
     41    std::cout << *param << std::endl;
     42#endif   
     43
    3844    log_printf(INFO,Execute_loop,FUNCTION,"Allocation");
    3945
     
    4551
    4652#ifdef STATISTICS
    47     if (_usage & USE_STATISTICS)
     53    if (usage_is_set(_usage,USE_STATISTICS))
    4854      {
    4955        log_printf(INFO,Execute_loop,FUNCTION,"Allocation of statistics");
     
    5460
    5561#ifdef VHDL
    56     if (_usage & USE_VHDL)
     62    if (usage_is_set(_usage,USE_VHDL))
    5763      {
    5864        // generate the vhdl
     
    6470
    6571#ifdef SYSTEMC
    66     if (_usage & USE_SYSTEMC)
     72    if (usage_is_set(_usage,USE_SYSTEMC))
    6773      {
    6874        log_printf(INFO,Execute_loop,FUNCTION,"Method - transition");
     
    8894
    8995#ifdef STATISTICS
    90     if (_usage & USE_STATISTICS)
     96    if (usage_is_set(_usage,USE_STATISTICS))
    9197      {
    9298        log_printf(INFO,Execute_loop,FUNCTION,"Generate Statistics file");
Note: See TracChangeset for help on using the changeset viewer.