source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/include/Parameters.h @ 113

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

1) Add modelsim simulation systemC
2) Modelsim cosimulation systemC / VHDL is not finish !!!! (cf execute_queue and write_unit)
3) Add multi architecture
5) Add template for comparator, multiplier and divider
6) Change Message
Warning) Various test macro have change, many selftest can't compile

File size: 1.1 KB
Line 
1#ifndef morpheo_behavioural_@DEFINE_Parameters_h
2#define morpheo_behavioural_@DEFINE_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13
14namespace morpheo {
15namespace behavioural {
16@NAMESPACE_BEGIN
17
18  class Parameters : public morpheo::behavioural::Parameters
19  {
20    //-----[ fields ]------------------------------------------------------------
21
22    //-----[ methods ]-----------------------------------------------------------
23  public : Parameters  (bool is_toplevel=false);
24//public : Parameters  (Parameters & param) ;
25  public : ~Parameters (void);
26
27  public :        void            copy       (void);
28
29  public :        Parameters_test msg_error  (void);
30
31  public :        std::string     id         (void);
32
33  public :        std::string     print      (uint32_t depth);
34  public : friend std::ostream&   operator<< (std::ostream& output_stream,
35                                              morpheo::behavioural::@NAMESPACE_USE::Parameters & x);
36  };
37
38@NAMESPACE_END
39}; // end namespace behavioural
40}; // end namespace morpheo             
41
42#endif
Note: See TracBrowser for help on using the repository browser.