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

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.6 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 88 2008-12-10 18:31:39Z 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 : const uint32_t _nb_port_read ;
24  public : const uint32_t _nb_port_write;
25  public : const uint32_t _nb_port_read_write;
26  public : const uint32_t _nb_word      ;
27  public : const uint32_t _size_word    ;
28  public : const uint32_t _size_address ;
29  public : const bool     _have_port_address;
30
31  public : Parameters (uint32_t nb_port_read ,
32                       uint32_t nb_port_write,
33                       uint32_t nb_port_read_write,
34                       uint32_t nb_word      ,
35                       uint32_t size_word    );
36//   public : Parameters (Parameters & param) ;
37  public : ~Parameters () ;
38
39  public :        void            copy       (void);
40
41  public :        Parameters_test msg_error  (void);
42
43  public :        std::string   print      (uint32_t depth);
44  public : friend std::ostream& operator<< (std::ostream& output_stream,
45                                            morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
46  };
47
48}; // end namespace registerfile_monolithic
49}; // end namespace registerfile
50}; // end namespace generic
51}; // end namespace behavioural         
52}; // end namespace morpheo             
53
54#endif
Note: See TracBrowser for help on using the repository browser.