source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/include/Parameters.h @ 100

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

1) Bug fix (Operation, Instruction)
2) Modif Return Address Stack
3) Add Soft Test
4) Add Soc Test

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#ifndef morpheo_behavioural_generic_queue_Parameters_h
2#define morpheo_behavioural_generic_queue_Parameters_h
3
4/*
5 * $Id: Parameters.h 100 2009-01-08 13:06:27Z 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 queue {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : const uint32_t _size_queue  ;
25  public : const uint32_t _size_data   ;
26  public : const uint32_t _nb_port_slot;
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (uint32_t size_queue,
30                        uint32_t size_data ,
31                        uint32_t nb_port_slot);
32
33//   public : Parameters  (Parameters & param) ;
34  public : ~Parameters () ;
35
36  public :        void            copy       (void);
37
38  public :        Parameters_test msg_error  (void);
39
40  public :        std::string   print      (uint32_t depth);
41  public : friend std::ostream& operator<< (std::ostream& output_stream,
42                                            morpheo::behavioural::generic::queue::Parameters & x);
43  };
44
45}; // end namespace queue
46}; // end namespace generic
47
48}; // end namespace behavioural
49}; // end namespace morpheo             
50
51#endif
Note: See TracBrowser for help on using the repository browser.