Ignore:
Timestamp:
May 21, 2009, 12:01:32 AM (15 years ago)
Author:
rosiere
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h

    r113 r118  
    2424 */
    2525
     26#include "Common/include/Debug_type.h"
    2627#include "Common/include/Systemc.h"
    2728#include "Common/include/Message.h"
     
    2930#include "Common/include/ChangeCase.h"
    3031#include "Behavioural/include/Debug_component.h"
     32#include "Behavioural/include/Model.h"
     33#include "Behavioural/include/Simulation.h"
    3134#include <systemc.h>
    3235#include <stdio.h>
     
    3942namespace morpheo {
    4043
    41 typedef enum
    42   {
    43     DEBUG_NONE ,
    44     DEBUG_INFO ,
    45     DEBUG_TRACE,
    46     DEBUG_FUNC ,
    47     DEBUG_ALL
    48   } debug_verbosity_t;
     44// typedef enum
     45//   {
     46//     DEBUG_NONE ,
     47//     DEBUG_INFO ,
     48//     DEBUG_TRACE,
     49//     DEBUG_FUNC ,
     50//     DEBUG_ALL
     51//   } debug_verbosity_t;
    4952
    5053  extern debug_verbosity_t debug;
     
    8184        if ((debug == DEBUG_ALL ) or                                    \
    8285            (DEBUG_ ## level == DEBUG_NONE) or                          \
    83             (( DEBUG_ ## level     <= debug) and                        \
    84              ( DEBUG_ ## component == true )) )                        \
     86            (( DEBUG_ ## level <= debug) and                            \
     87             ( morpheo::behavioural::_model.get_debug(NAME_ ## component))) ) \
    8588          {                                                             \
    8689            if (DEBUG_ ## level <= DEBUG_INFO)                          \
Note: See TracChangeset for help on using the changeset viewer.