27 lines
429 B
C
27 lines
429 B
C
|
/*
|
||
|
* resetgen.h
|
||
|
*
|
||
|
* Created on: 02.01.2019
|
||
|
* Author: eyck
|
||
|
*/
|
||
|
|
||
|
#ifndef COMPONENTS_RESETGEN_H_
|
||
|
#define COMPONENTS_RESETGEN_H_
|
||
|
|
||
|
#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();
|
||
|
};
|
||
|
|
||
|
#endif /* COMPONENTS_RESETGEN_H_ */
|