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

    r81 r88  
    3535    log_printf(FUNC,Sort,FUNCTION,"Begin");
    3636
     37#if DEBUG_Sort == true
     38    log_printf(INFO,Sort,FUNCTION,_("<%s> Parameters"),_name.c_str());
     39
     40    std::cout << *param << std::endl;
     41#endif   
     42
    3743    log_printf(INFO,Sort,FUNCTION,"Allocation");
    3844
     
    4450
    4551#ifdef STATISTICS
    46     if (_usage & USE_STATISTICS)
     52    if (usage_is_set(_usage,USE_STATISTICS))
    4753      {
    4854        log_printf(INFO,Sort,FUNCTION,"Allocation of statistics");
     
    5359
    5460#ifdef VHDL
    55     if (_usage & USE_VHDL)
     61    if (usage_is_set(_usage,USE_VHDL))
    5662      {
    5763        // generate the vhdl
     
    6369
    6470#ifdef SYSTEMC
    65     if (_usage & USE_SYSTEMC)
     71    if (usage_is_set(_usage,USE_SYSTEMC))
    6672      {
    6773        log_printf(INFO,Sort,FUNCTION,"Method - transition");
     
    117123
    118124#ifdef STATISTICS
    119     if (_usage & USE_STATISTICS)
     125    if (usage_is_set(_usage,USE_STATISTICS))
    120126      {
    121127        statistics_deallocation();
Note: See TracChangeset for help on using the changeset viewer.