#ifdef VHDL_TESTBENCH /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Vhdl_Testbench.h" #include using namespace std; namespace morpheo { namespace behavioural { void Vhdl_Testbench::add_input (uint32_t value) { _list_input_cycle.push_front(toBase2(value,*_num_input)); _num_input++; }; }; // end namespace behavioural }; // end namespace morpheo #endif