Ignore:
Timestamp:
Mar 6, 2007, 3:34:04 PM (17 years ago)
Author:
kane
Message:

1) Ajout d'un "printer" XML pour la configuration de paramètres

2) Fin du composant "Two_Level_Branch_Predictor"

validation * systemc

  • vhdl
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Include/ErrorMorpheo.h

    r2 r3  
    2929  };
    3030
     31  class TestMorpheo : public exception
     32  {
     33    // -----[ fields ]----------------------------------------------------
     34  private : string _msg;
     35   
     36    // -----[ methods ]---------------------------------------------------
     37  public  :             TestMorpheo   ()           throw() { _msg = "Test error ...";}
     38  public  :             TestMorpheo   (string msg) throw() { _msg = msg;}
     39  public  :             ~TestMorpheo  (void)       throw() {}
     40  public  : const char* what          ()    const  throw() { return ( _msg.c_str() );}
     41  };
     42
    3143}; // end namespace morpheo             
    3244
Note: See TracChangeset for help on using the changeset viewer.