2019-01-03 21:18:09 +01:00
|
|
|
/*
|
|
|
|
* resetgen.h
|
|
|
|
*
|
|
|
|
* Created on: 02.01.2019
|
|
|
|
* Author: eyck
|
|
|
|
*/
|
|
|
|
|
2021-05-18 16:33:29 +02:00
|
|
|
#ifndef VP_COMPONENTS_RESETGEN_H_
|
|
|
|
#define VP_COMPONENTS_RESETGEN_H_
|
2019-01-03 21:18:09 +01:00
|
|
|
|
|
|
|
#include <systemc>
|
|
|
|
|
|
|
|
class ResetGen: public sc_core::sc_module {
|
|
|
|
public:
|
|
|
|
SC_HAS_PROCESS(ResetGen);
|
|
|
|
|
|
|
|
sc_core::sc_out<sc_dt::sc_logic> reset_o;
|
|
|
|
|
|
|
|
ResetGen(const sc_core::sc_module_name&);
|
|
|
|
virtual ~ResetGen();
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void thread();
|
|
|
|
};
|
|
|
|
|
2021-05-18 16:33:29 +02:00
|
|
|
#endif /* VP_COMPONENTS_RESETGEN_H_ */
|