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

Last change on this file since 55 was 55, checked in by rosiere, 17 years ago

Ajout SystemC read_queue et reservation_station
Ajout port au bloc registerfile_monolithic (à ajouter également au bloc registerfile et registerfile_multi_banked)
Modif param : passage de pointeur (attention, tous les composants n'ont pas été tous modifier)

File size: 1.5 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_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
30  public : Parameters (uint32_t nb_port_read ,
31                       uint32_t nb_port_write,
32                       uint32_t nb_port_read_write,
33                       uint32_t nb_word      ,
34                       uint32_t size_word    );
35  public : Parameters (Parameters & param) ;
36  public : ~Parameters () ;
37
38  public : string msg_error (void);
39
40  public :        string   print      (uint32_t depth);
41  public : friend ostream& operator<< (ostream& output_stream,
42                                       morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
43  };
44
45}; // end namespace registerfile_monolithic
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.