/* * resetgen.h * * Created on: 02.01.2019 * Author: eyck */ #ifndef COMPONENTS_RESETGEN_H_ #define COMPONENTS_RESETGEN_H_ #include class ResetGen: public sc_core::sc_module { public: SC_HAS_PROCESS(ResetGen); sc_core::sc_out reset_o; ResetGen(const sc_core::sc_module_name&); virtual ~ResetGen(); protected: void thread(); }; #endif /* COMPONENTS_RESETGEN_H_ */