PySysC-SC/components/clkgen.cpp

24 lines
346 B
C++
Raw Normal View History

2019-01-03 21:18:09 +01:00
/*
* clkgen.cpp
*
* Created on: 02.01.2019
* Author: eyck
*/
#include <clkgen.h>
#include <scc/utilities.h>
ClkGen::ClkGen(const sc_core::sc_module_name& nm)
: sc_core::sc_module(nm)
, clk_o("clk_o")
{
}
ClkGen::~ClkGen() {
// TODO Auto-generated destructor stub
}
2019-01-06 15:26:13 +01:00
void ClkGen::end_of_elaboration() {
2019-01-03 21:18:09 +01:00
clk_o.write(10_ns);
}