source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/src/Parameters.cpp @ 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.3 KB
Line 
1/*
2 * $Id: Parameters.cpp 85 2008-05-14 13:09:48Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace core {
13namespace multi_front_end {
14namespace front_end {
15namespace ifetch_unit {
16namespace ifetch_unit_glue {
17
18
19#undef  FUNCTION
20#define FUNCTION "Ifetch_unit_Glue::Parameters"
21  Parameters::Parameters (uint32_t size_address)
22  {
23    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
24
25    _size_address = size_address;
26
27    test();
28    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
29  };
30 
31// #undef  FUNCTION
32// #define FUNCTION "Ifetch_unit_Glue::Parameters (copy)"
33//   Parameters::Parameters (Parameters & param)
34//   {
35//     log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
36//     test();
37//     log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
38//   };
39
40#undef  FUNCTION
41#define FUNCTION "Ifetch_unit_Glue::~Parameters"
42  Parameters::~Parameters () 
43  {
44    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
45    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
46  };
47
48}; // end namespace ifetch_unit_glue
49}; // end namespace ifetch_unit
50}; // end namespace front_end
51}; // end namespace multi_front_end
52}; // end namespace core
53
54}; // end namespace behavioural
55}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.