#if defined(STATISTICS) or defined(VHDL_TESTBENCH) /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Counter/include/Counter.h" namespace morpheo { namespace behavioural { namespace generic { namespace counter { void Counter::end_cycle () { log_printf(FUNC,Counter,"end_cycle","Begin"); #ifdef STATISTICS _stat->end_cycle(); #endif #ifdef VHDL_TESTBENCH // Evaluation before read the ouput signal // sc_start(0); _interfaces->testbench(); #endif log_printf(FUNC,Counter,"end_cycle","End"); }; }; // end namespace counter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif