Ignore:
Timestamp:
Jul 9, 2007, 11:04:26 AM (17 years ago)
Author:
rosiere
Message:

Modif mineur : ajout d'info de débug

Release non stable

File:
1 edited

Legend:

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

    r42 r43  
    1616namespace behavioural          {
    1717 
     18#undef  FUNCTION
     19#define FUNCTION "Vhdl::direction_toString"
    1820  string Vhdl::direction_toString (direction_t direction)
    1921  {
     22    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     23
     24    string _return;
    2025    switch (direction)
    2126      {
    22       case IN    : return "in    "; break;
    23       case OUT   : return "out   "; break;
    24       default    : return "      "; break;
     27      case IN    : _return = "in    "; break;
     28      case OUT   : _return = "out   "; break;
     29      default    : _return = "      "; break;
    2530      }
     31
     32    log_printf(FUNC,Behavioural,FUNCTION,"End");
     33    return _return;
    2634  };
    2735 
Note: See TracChangeset for help on using the changeset viewer.