source: trunk/IPs/systemC/processor/Morpheo/Common/include/Debug_type.h @ 118

Last change on this file since 118 was 118, checked in by rosiere, 15 years ago

1) Stat List : scan all queue to find free register
2) Write_queue : test "genMealy" add bypass [0]
3) Functionnal_unit : add const parameters to add or not the pipeline_in
4) Load Store Unit : if load make an exception, free nb_check
5) Debug, change test to add model

  • Property svn:keywords set to Id
File size: 512 bytes
Line 
1#ifndef Morpheo_Debug_type_h
2#define Morpheo_Debug_type_h
3
4/*
5 * $Id: Debug_type.h 118 2009-05-20 22:01:32Z rosiere $
6 *
7 * [ Description ]
8 *
9 *  Debug's Level :
10 *  - None    : print elementary information
11 *  - Info    : print basic information
12 *  - Trace   : trace internal variable
13 *  - Func    : trace call and return function
14 *  - All     : print all information
15 */
16
17
18namespace morpheo {
19
20typedef enum 
21  {
22    DEBUG_NONE ,
23    DEBUG_INFO ,
24    DEBUG_TRACE,
25    DEBUG_FUNC ,
26    DEBUG_ALL
27  } debug_verbosity_t;
28
29}; // end namespace morpheo
30#endif
Note: See TracBrowser for help on using the repository browser.