source: trunk/IPs/systemC/processor/Morpheo/Common/src/Debug.cpp @ 82

Last change on this file since 82 was 82, checked in by rosiere, 16 years ago
  • 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
  • Property svn:keywords set to Id
File size: 292 bytes
Line 
1/*
2 * $Id: Debug.cpp 82 2008-05-01 16:48:45Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Common/include/Debug.h"
9
10static uint32_t _debug_depth = 0;
11
12std::string debug_tab (void)
13{
14  return std::string(_debug_depth,'\t');
15}
16
17void debug_tab_inc (void)
18{
19//   _debug_depth ++;
20}
21
22void debug_tab_dec (void)
23{
24//   _debug_depth --;
25}
Note: See TracBrowser for help on using the repository browser.