#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Shifter/include/Shifter.h" #include "Behavioural/include/Vhdl.h" namespace morpheo { namespace behavioural { namespace generic { namespace shifter { void Shifter::vhdl (void) { Vhdl vhdl (_name); vhdl.set_library_work (_name + "_Pack"); vhdl_port (vhdl); vhdl_declaration (vhdl); vhdl_body (vhdl); vhdl.generate_file(); }; }; // end namespace shifter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif