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/Behavioural/include/Model.h

    r113 r118  
    99 */
    1010
    11 #include "Common/include/Debug.h"
     11#include "Common/include/ToString.h"
     12#include "Common/include/FromString.h"
    1213#include "Common/include/ErrorMorpheo.h"
    1314#include <map>
     
    2425  typedef struct
    2526  {
    26     model_type_t      type ;
    27     debug_verbosity_t debug;
     27    model_type_t type ;
     28    bool        debug;
    2829  } model_t;
    2930   
    3031  class Model
    3132  {
    32   private : static const model_type_t      default_type  = MODEL_SYSTEMC;
    33   private : static const debug_verbosity_t default_debug = DEBUG_NONE;
     33  private : static const model_type_t default_type  = MODEL_SYSTEMC;
     34  private : static const bool         default_debug = false;
    3435
    3536  private : std::map<std::string,model_t> models;
    3637
    37   public  :                    Model (void);
    38   public  :                   ~Model (void);
    39   public  : void              set_model (std::string component, model_type_t type, debug_verbosity_t debug);
    40   public  : model_type_t      get_type  (std::string component);
    41   public  : debug_verbosity_t get_debug (std::string component);
    42   public  : void              print     (void);
     38  public  :               Model (void);
     39  public  :              ~Model (void);
     40  public  : void         set_model (std::string component, model_type_t type, bool debug);
     41  public  : model_type_t get_type  (std::string component);
     42  public  : bool        get_debug (std::string component);
     43  public  : void         print     (void);
    4344  };
    4445 
Note: See TracChangeset for help on using the changeset viewer.