source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl.cpp @ 88

Last change on this file since 88 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: 643 bytes
RevLine 
[2]1#ifdef VHDL
2
3/*
4 * $Id: Vhdl.cpp 81 2008-04-15 18:40:01Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo              {
13namespace behavioural          {
14
[43]15#undef  FUNCTION
16#define FUNCTION "Vhdl::Vhdl"
[71]17  Vhdl::Vhdl  (std::string name):
[2]18    _name   (name)
19  {
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
21    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]22  };
23 
[43]24#undef  FUNCTION
25#define FUNCTION "Vhdl::~Vhdl"
[2]26  Vhdl::~Vhdl ()
27  {
[43]28    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
29    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]30  };
31 
32
33}; // end namespace behavioural         
34}; // end namespace morpheo             
35
36#endif
Note: See TracBrowser for help on using the repository browser.