source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Parameters.cpp @ 88

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.2 KB
RevLine 
[10]1/*
2 * $Id: Parameters.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
[15]8#include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h"
[10]9
10namespace morpheo {
11namespace behavioural {
12namespace generic {
13namespace victim {
[15]14namespace victim_pseudo_lru {
[10]15
16
17  Parameters::Parameters (uint32_t nb_entity ,
18                          uint32_t nb_access ,
[78]19//                        uint32_t nb_update ,
20                          uint32_t size_table,
21                          bool     table_global):
[10]22    _nb_entity  (nb_entity ),
23    _nb_access  (nb_access ),
[78]24//     _nb_update  (nb_update ),
25    _size_table ((table_global == true)?1:size_table),
26    _table_global (table_global),
27    _size_address (size_table)
[10]28  {
29    test();
30  };
31 
[88]32//   Parameters::Parameters (Parameters & param):
33//     _nb_entity  (param._nb_entity ),
34//     _nb_access  (param._nb_access ),
35// //     _nb_update  (param._nb_update ),
36//     _size_table (param._size_table),
37//     _table_global(param._table_global),
38//     _size_address(param._size_address)
39//   {
40//     test();
41//   };
[10]42
43  Parameters::~Parameters () 
[88]44  {
45  };
[10]46
[88]47  void Parameters::copy (void) 
48  {
49  };
50
[15]51}; // end namespace victim_pseudo_lru
[10]52}; // end namespace victim
53}; // end namespace generic
54
55}; // end namespace behavioural
56}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.