#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/@DIRECTORY/include/@COMPONENT.h" namespace morpheo { namespace behavioural { @NAMESPACE_BEGIN void @COMPONENT::vhdl_port (Vhdl & vhdl) { log_printf(FUNC,@COMPONENT,"vhdl_port","Begin"); vhdl.set_port (" in_CLOCK" , IN, 1); vhdl.set_port (" in_NRESET", IN, 1); log_printf(FUNC,@COMPONENT,"vhdl_port","End"); }; @NAMESPACE_END }; // end namespace behavioural }; // end namespace morpheo #endif