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
Location:
trunk/IPs/systemC/processor/Morpheo/Common/src
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/src/Debug.cpp

    r81 r82  
     1/*
     2 * $Id$
     3 *
     4 * [ Description ]
     5 *
     6 */
     7
    18#include "Common/include/Debug.h"
    29
    310static uint32_t _debug_depth = 0;
    4 
    511
    612std::string debug_tab (void)
     
    915}
    1016
    11 void debug_function_begin (std::string component, std::string function)
     17void debug_tab_inc (void)
    1218{
    13   _debug_depth ++;
    14 
    15   log_printf(FUNC,true,function.c_str(),"%sBegin",debug_tab().c_str());
     19//   _debug_depth ++;
    1620}
    1721
    18 void debug_function_end (std::string component, std::string function)
     22void debug_tab_dec (void)
    1923{
    20   log_printf(FUNC,true,function.c_str(),"%sEnd",debug_tab().c_str());
    21 
    22   _debug_depth --;
     24//   _debug_depth --;
    2325}
Note: See TracChangeset for help on using the changeset viewer.