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

Last change on this file since 10 was 10, checked in by rosiere, 17 years ago
File size: 1.5 KB
Line 
1#ifndef morpheo_behavioural_generic_registerfile_multi_banked_Parameters_h
2#define morpheo_behavioural_generic_registerfile_multi_banked_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17namespace generic {
18namespace registerfile_multi_banked {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : const uint32_t _nb_port_read ;
25  public : const uint32_t _nb_port_write;
26  public : const uint32_t _nb_word      ;
27  public : const uint32_t _size_word    ;
28  public : const uint32_t _nb_bank      ;
29
30  public : const uint32_t _size_address ;
31
32    //-----[ methods ]-----------------------------------------------------------
33  public : Parameters  (uint32_t nb_port_read ,
34                        uint32_t nb_port_write,
35                        uint32_t nb_word      ,
36                        uint32_t size_word    ,
37                        uint32_t nb_bank      );
38  public : Parameters  (Parameters & param) ;
39  public : ~Parameters () ;
40
41  public : string msg_error (void);
42
43  public :        string   print      (uint32_t depth);
44  public : friend ostream& operator<< (ostream& output_stream,
45                                       morpheo::behavioural::generic::registerfile_multi_banked::Parameters & x);
46  };
47
48}; // end namespace registerfile_multi_banked
49}; // end namespace generic
50
51}; // end namespace behavioural
52}; // end namespace morpheo             
53
54#endif
Note: See TracBrowser for help on using the repository browser.