Ignore:
Timestamp:
May 1, 2008, 6:48:45 PM (16 years ago)
Author:
rosiere
Message:
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_test_map.cpp

    r81 r82  
    1414#undef  FUNCTION
    1515#define FUNCTION "Interfaces::test_map"
    16   bool Interfaces::test_map (uint32_t depth, bool top_level)
     16  bool Interfaces::test_map (uint32_t depth, bool top_level, bool is_behavioural)
    1717  {
    1818    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     
    2727         i != _list_interface->end();
    2828         ++i)
    29       _return &= (*i)->test_map(depth+1, top_level);
     29      _return &= (*i)->test_map(depth+1, top_level, is_behavioural);
    3030
    3131    log_printf(FUNC,Behavioural,FUNCTION,"End");
     
    3434  };
    3535
     36// #undef  FUNCTION
     37// #define FUNCTION "Interfaces::test_equi"
     38//   bool Interfaces::test_equi (uint32_t depth)
     39//   {
     40//     log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     41
     42//     std::string tab  = std::string(depth,'\t');
     43
     44//     bool _return = true;
     45
     46//     log_printf(NONE,Behavioural,FUNCTION, "%s* Interfaces \"%s\"",tab.c_str(),_name.c_str());
     47   
     48//     for (std::list<Interface_fifo*>::iterator i  = _list_interface->begin();
     49//       i != _list_interface->end();
     50//       ++i)
     51//       _return &= (*i)->test_equi(depth+1);
     52
     53//     log_printf(FUNC,Behavioural,FUNCTION,"End");
     54   
     55//     return _return;
     56//   };
     57
    3658}; // end namespace behavioural         
    3759}; // end namespace morpheo             
Note: See TracChangeset for help on using the changeset viewer.