#ifdef SYSTEMC /* * $Id: Morpheo_transition.cpp 146 2011-02-01 20:57:54Z rosiere $ * * [ Description ] * */ #include "TopLevel/include/Morpheo.h" #include "Behavioural/include/Simulation.h" namespace morpheo { using namespace behavioural; #undef FUNCTION #define FUNCTION "Morpheo::transition" void Morpheo::transition (void) { log_begin(Morpheo,FUNCTION); // Re init the alarm alarm(debug_idle_time); #if defined(STATISTICS) or defined(VHDL_TESTBENCH) end_cycle (); #endif // Test stop condition if (simulation_test_end()) sc_stop(); log_end(Morpheo,FUNCTION); }; }; // end namespace morpheo #endif