diff options
Diffstat (limited to 'util/systemc/sc_module.cc')
-rw-r--r-- | util/systemc/sc_module.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/systemc/sc_module.cc b/util/systemc/sc_module.cc index 46a8d39ee..40f79bc85 100644 --- a/util/systemc/sc_module.cc +++ b/util/systemc/sc_module.cc @@ -43,6 +43,7 @@ * Steve Reinhardt * Andrew Bardsley * Matthias Jung + * Christian Menard */ /** @@ -77,7 +78,7 @@ setTickFrequency() ::setClockFrequency(1000000000000); } -Module::Module(sc_core::sc_module_name name) : sc_core::sc_module(name), +Module::Module(sc_core::sc_module_name name) : sc_core::sc_channel(name), in_simulate(false) { SC_METHOD(eventLoop); |