From ebe4100f34d1899ced72f43ed055cc21a3e7e1e1 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 26 Feb 2024 21:18:56 +0100 Subject: port to systemc-3.0.0 beta --- src/sc_export.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/sc_export.cc') 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; -- cgit v1.2.3