aboutsummaryrefslogtreecommitdiff
path: root/src/sc_export.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_export.cc')
-rw-r--r--src/sc_export.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sc_export.cc b/src/sc_export.cc
index e3d475b..705ec72 100644
--- a/src/sc_export.cc
+++ b/src/sc_export.cc
@@ -12,8 +12,6 @@ using sc_core::sc_signal_inout_if;
// -- CLOCK_GEN ----------------------------------------------------------------
struct clock_gen : public sc_module {
- SC_HAS_PROCESS(clock_gen);
-
explicit clock_gen(sc_module_name nm, unsigned period_ns = 20)
: sc_module(nm), m_half_period(period_ns / 2) {
assert(period_ns == m_half_period * 2);
@@ -42,8 +40,6 @@ struct clock_gen : public sc_module {
// -- TICKTOCK -----------------------------------------------------------------
struct ticktock : public sc_module {
- SC_HAS_PROCESS(ticktock);
-
explicit ticktock(sc_module_name nm) : sc_module(nm) {
SC_METHOD(handle_clk);
sensitive << p_clk;