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

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 1.6 KB
RevLine 
[15]1#ifndef morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
2#define morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
[2]3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
[44]11#include "Common/include/Debug.h"
[2]12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo                    {
16namespace behavioural                {
17namespace generic                    {
18namespace registerfile               {
[15]19namespace registerfile_monolithic    {
[2]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;
[55]25  public : const uint32_t _nb_port_read_write;
[2]26  public : const uint32_t _nb_word      ;
27  public : const uint32_t _size_word    ;
[53]28  public : const uint32_t _size_address ;
[62]29  public : const bool     _have_port_address;
[2]30
31  public : Parameters (uint32_t nb_port_read ,
32                       uint32_t nb_port_write,
[55]33                       uint32_t nb_port_read_write,
[2]34                       uint32_t nb_word      ,
35                       uint32_t size_word    );
36  public : Parameters (Parameters & param) ;
37  public : ~Parameters () ;
38
[75]39  public :        std::string   msg_error  (void);
40  public :        std::string   print      (uint32_t depth);
41  public : friend std::ostream& operator<< (std::ostream& output_stream,
42                                            morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
[2]43  };
44
[15]45}; // end namespace registerfile_monolithic
[2]46}; // end namespace registerfile
47}; // end namespace generic
48}; // end namespace behavioural         
49}; // end namespace morpheo             
50
51#endif
Note: See TracBrowser for help on using the repository browser.