source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Comparator/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.5 KB
Line 
1#ifndef morpheo_behavioural_generic_comparator_Parameters_h
2#define morpheo_behavioural_generic_comparator_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 "Behavioural/Generic/Comparator/include/Types.h"
13#include "Common/include/Debug.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace generic {
18namespace comparator {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : uint32_t             _size_data;
25  public : bool                 _is_signed;
26  public : Tcomparator_scheme_t _type;
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (uint32_t             size_data,
30                        bool                 is_signed,
31                        Tcomparator_scheme_t type     ,
32                        bool is_toplevel=false);
33//public : Parameters  (Parameters & param) ;
34  public : ~Parameters (void);
35
36  public :        void            copy       (void);
37
38  public :        Parameters_test msg_error  (void);
39
40  public :        std::string     print      (uint32_t depth);
41  public : friend std::ostream&   operator<< (std::ostream& output_stream,
42                                              morpheo::behavioural::generic::comparator::Parameters & x);
43  };
44
45}; // end namespace comparator
46}; // end namespace generic
47
48}; // end namespace behavioural
49}; // end namespace morpheo             
50
51#endif
Note: See TracBrowser for help on using the repository browser.