source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Parameters.h @ 137

Last change on this file since 137 was 137, checked in by rosiere, 14 years ago

Various modif (add test, and vhdl)

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1#ifndef morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
2#define morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
3
4/*
5 * $Id: Parameters.h 137 2010-02-16 12:35:48Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo                    {
16namespace behavioural                {
17namespace generic                    {
18namespace registerfile               {
19namespace registerfile_monolithic    {
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23  public : uint32_t    _nb_port_read ;
24  public : uint32_t    _nb_port_write;
25  public : uint32_t    _nb_port_read_write;
26  public : uint32_t    _nb_word      ;
27  public : uint32_t    _size_word    ;
28  public : std::string _init_value   ;
29
30  public : uint32_t    _size_address ;
31  public : bool        _have_port_address;
32  public : bool        _have_init_value;
33
34  public : Parameters (uint32_t    nb_port_read ,
35                       uint32_t    nb_port_write,
36                       uint32_t    nb_port_read_write,
37                       uint32_t    nb_word      ,
38                       uint32_t    size_word    ,
39                       std::string init_value="");
40//   public : Parameters (Parameters & param) ;
41  public : ~Parameters () ;
42
43  public :        void            copy       (void);
44
45  public :        Parameters_test msg_error  (void);
46
47  public :        std::string   print      (uint32_t depth);
48  public : friend std::ostream& operator<< (std::ostream& output_stream,
49                                            morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
50  };
51
52}; // end namespace registerfile_monolithic
53}; // end namespace registerfile
54}; // end namespace generic
55}; // end namespace behavioural         
56}; // end namespace morpheo             
57
58#endif
Note: See TracBrowser for help on using the repository browser.