2019-01-03 21:18:09 +01:00
|
|
|
/*
|
|
|
|
* clkgen.h
|
|
|
|
*
|
|
|
|
* Created on: 02.01.2019
|
|
|
|
* Author: eyck
|
|
|
|
*/
|
|
|
|
|
2021-05-18 16:33:29 +02:00
|
|
|
#ifndef VP_COMPONENTS_CLKGEN_H_
|
|
|
|
#define VP_COMPONENTS_CLKGEN_H_
|
2019-01-03 21:18:09 +01:00
|
|
|
|
|
|
|
#include <systemc>
|
|
|
|
|
|
|
|
class ClkGen: public sc_core::sc_module {
|
|
|
|
public:
|
|
|
|
sc_core::sc_out<sc_core::sc_time> clk_o;
|
|
|
|
|
|
|
|
ClkGen(const sc_core::sc_module_name&);
|
|
|
|
virtual ~ClkGen();
|
|
|
|
protected:
|
2019-01-06 15:26:13 +01:00
|
|
|
void end_of_elaboration() override;
|
2019-01-03 21:18:09 +01:00
|
|
|
};
|
|
|
|
|
2021-05-18 16:33:29 +02:00
|
|
|
#endif /* VP_COMPONENTS_CLKGEN_H_ */
|