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

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 1.2 KB
Line 
1#ifndef morpheo_behavioural_generic_registerfile_Parameters_h
2#define morpheo_behavioural_generic_registerfile_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               {
19
20  class Parameters : public morpheo::behavioural::Parameters
21  {
22  public : const uint32_t _nb_port_read ;
23  public : const uint32_t _nb_port_write;
24  public : const uint32_t _nb_word      ;
25  public : const uint32_t _size_word    ;
26
27  public : Parameters (uint32_t nb_port_read ,
28                       uint32_t nb_port_write,
29                       uint32_t nb_word      ,
30                       uint32_t size_word    );
31  public : Parameters (Parameters & param) ;
32  public : ~Parameters () ;
33
34  public : string msg_error (void);
35
36  public :        string   print      (uint32_t depth);
37  public : friend ostream& operator<< (ostream& output_stream,
38                                       morpheo::behavioural::generic::registerfile::Parameters & x);
39  };
40
41}; // end namespace registerfile
42}; // end namespace generic
43}; // end namespace behavioural         
44}; // end namespace morpheo             
45
46#endif
Note: See TracBrowser for help on using the repository browser.