source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/include/Parameters.h @ 85

Last change on this file since 85 was 85, checked in by rosiere, 16 years ago
  • Ifetch_unit : systemC test ok
  • modif shell script and makefile.tools : SHELL=/bin/bash
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_ifetch_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_ifetch_unit_glue_Parameters_h
3
4/*
5 * $Id: Parameters.h 85 2008-05-14 13:09:48Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace ifetch_unit {
20namespace ifetch_unit_glue {
21
22
23  class Parameters : public morpheo::behavioural::Parameters
24  {
25    //-----[ fields ]------------------------------------------------------------
26  public : uint32_t _size_address;
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (uint32_t size_address);
30//   public : Parameters  (Parameters & param) ;
31  public : ~Parameters () ;
32
33  public :        Parameters_test msg_error  (void);
34
35  public :        std::string     print      (uint32_t depth);
36  public : friend std::ostream&   operator<< (std::ostream& output_stream,
37                                              morpheo::behavioural::core::multi_front_end::front_end::ifetch_unit::ifetch_unit_glue::Parameters & x);
38  };
39
40}; // end namespace ifetch_unit_glue
41}; // end namespace ifetch_unit
42}; // end namespace front_end
43}; // end namespace multi_front_end
44}; // end namespace core
45
46}; // end namespace behavioural
47}; // end namespace morpheo             
48
49#endif
Note: See TracBrowser for help on using the repository browser.