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

Last change on this file since 53 was 53, checked in by rosiere, 17 years ago
  • Banc de registre multi banc
  • Banc de registre générique.
File size: 1.4 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$
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 : const uint32_t _nb_port_read ;
24  public : const uint32_t _nb_port_write;
25  public : const uint32_t _nb_word      ;
26  public : const uint32_t _size_word    ;
27  public : const uint32_t _size_address ;
28
29  public : Parameters (uint32_t nb_port_read ,
30                       uint32_t nb_port_write,
31                       uint32_t nb_word      ,
32                       uint32_t size_word    );
33  public : Parameters (Parameters & param) ;
34  public : ~Parameters () ;
35
36  public : string msg_error (void);
37
38  public :        string   print      (uint32_t depth);
39  public : friend ostream& operator<< (ostream& output_stream,
40                                       morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
41  };
42
43}; // end namespace registerfile_monolithic
44}; // end namespace registerfile
45}; // end namespace generic
46}; // end namespace behavioural         
47}; // end namespace morpheo             
48
49#endif
Note: See TracBrowser for help on using the repository browser.