source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Multiplier/include/Parameters.h @ 112

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

1) Stat_list : fix retire old and new register bug
2) Stat_list : remove read_counter and valid flag, because validation of destination is in retire step (not in commit step)
3) Model : add class Model (cf Morpheo.sim)
4) Allocation : alloc_interface_begin and alloc_interface_end to delete temporary array.
5) Script : add distexe.sh
6) Add Comparator, Multiplier, Divider. But this component are not implemented
7) Software : add Dhrystone

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