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

    r81 r88  
    3535    log_printf(FUNC,Queue,FUNCTION,"Begin");
    3636
     37#if DEBUG_Core == true
     38    log_printf(INFO,Core,FUNCTION,_("<%s> Parameters"),_name.c_str());
     39
     40    std::cout << *param << std::endl;
     41#endif   
     42
    3743    log_printf(INFO,Queue,FUNCTION,"Allocation");
    3844    allocation ();
    3945
    4046#ifdef STATISTICS
    41     if (_usage & USE_STATISTICS)
     47    if (usage_is_set(_usage,USE_STATISTICS))
    4248      {
    4349        log_printf(INFO,Queue,FUNCTION,"Allocation of statistics");
     
    4854
    4955#ifdef VHDL
    50     if (_usage & USE_VHDL)
     56    if (usage_is_set(_usage,USE_VHDL))
    5157      {
    5258        // generate the vhdl
     
    5864
    5965#ifdef SYSTEMC
    60     if (_usage & USE_SYSTEMC)
     66    if (usage_is_set(_usage,USE_SYSTEMC))
    6167      {
    6268        log_printf(INFO,Queue,FUNCTION,"Method - transition");
     
    9298
    9399#ifdef STATISTICS
    94     if (_usage & USE_STATISTICS)
     100    if (usage_is_set(_usage,USE_STATISTICS))
    95101      {
    96102        log_printf(INFO,Queue,FUNCTION,"Generate Statistics file");
Note: See TracChangeset for help on using the changeset viewer.