source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1#ifndef morpheo_behavioural_generic_victim_victim_pseudo_lru_Parameters_h
2#define morpheo_behavioural_generic_victim_victim_pseudo_lru_Parameters_h
3
4/*
5 * $Id: Parameters.h 81 2008-04-15 18:40:01Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include <math.h>
13
14namespace morpheo {
15namespace behavioural {
16namespace generic {
17namespace victim {
18namespace victim_pseudo_lru {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : const uint32_t _nb_entity ; // number of entity
25  public : const uint32_t _nb_access ; // number of port to select an entity
26//public : const uint32_t _nb_update ; // number of port to update the internal entity
27  public : const uint32_t _size_table; // Size of victim_pseudo_lru's table
28  public : const bool     _table_global;
29  public : const uint32_t _size_address;
30
31    //-----[ methods ]-----------------------------------------------------------
32  public : Parameters  (uint32_t nb_entity ,
33                        uint32_t nb_access ,
34//                      uint32_t nb_update ,
35                        uint32_t size_table,
36                        bool     table_global);
37  public : Parameters  (Parameters & param) ;
38  public : ~Parameters () ;
39
40  public :        Parameters_test msg_error  (void);
41  public :        std::string     print      (uint32_t depth);
42  public : friend std::ostream&   operator<< (std::ostream& output_stream,
43                                              morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x);
44  };
45
46}; // end namespace victim_pseudo_lru
47}; // end namespace victim
48}; // end namespace generic
49
50}; // end namespace behavioural
51}; // end namespace morpheo             
52
53#endif
Note: See TracBrowser for help on using the repository browser.