#ifdef VHDL /* * $Id: Execute_loop_vhdl.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_Execute_loop/Execute_loop/include/Execute_loop.h" #include "Behavioural/include/Vhdl.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_execute_loop { namespace execute_loop { #undef FUNCTION #define FUNCTION "Execute_loop::vhdl" void Execute_loop::vhdl (void) { log_printf(FUNC,Execute_loop,FUNCTION,"Begin"); Vhdl * vhdl = new Vhdl (_name); _interfaces->set_port(vhdl); _component->vhdl_instance(vhdl); vhdl->generate_file(); delete vhdl; log_printf(FUNC,Execute_loop,FUNCTION,"End"); }; }; // end namespace execute_loop }; // end namespace multi_execute_loop }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo #endif