|
Last change
on this file since 81 was
81,
checked in by rosiere, 18 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
|
| Line | |
|---|
| 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 | |
|---|
| 12 | namespace morpheo { |
|---|
| 13 | namespace behavioural { |
|---|
| 14 | |
|---|
| 15 | #undef FUNCTION |
|---|
| 16 | #define FUNCTION "Vhdl::Vhdl" |
|---|
| 17 | Vhdl::Vhdl (std::string name): |
|---|
| 18 | _name (name) |
|---|
| 19 | { |
|---|
| 20 | log_printf(FUNC,Behavioural,FUNCTION,"Begin"); |
|---|
| 21 | log_printf(FUNC,Behavioural,FUNCTION,"End"); |
|---|
| 22 | }; |
|---|
| 23 | |
|---|
| 24 | #undef FUNCTION |
|---|
| 25 | #define FUNCTION "Vhdl::~Vhdl" |
|---|
| 26 | Vhdl::~Vhdl () |
|---|
| 27 | { |
|---|
| 28 | log_printf(FUNC,Behavioural,FUNCTION,"Begin"); |
|---|
| 29 | log_printf(FUNC,Behavioural,FUNCTION,"End"); |
|---|
| 30 | }; |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | }; // end namespace behavioural |
|---|
| 34 | }; // end namespace morpheo |
|---|
| 35 | |
|---|
| 36 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.