summaryrefslogtreecommitdiff
path: root/src/systemc/core/SystemC.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/core/SystemC.py')
-rw-r--r--src/systemc/core/SystemC.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/systemc/core/SystemC.py b/src/systemc/core/SystemC.py
index 49b569b0c..7ab33ea71 100644
--- a/src/systemc/core/SystemC.py
+++ b/src/systemc/core/SystemC.py
@@ -73,6 +73,12 @@ class SystemC_ScObject(SimObject):
method.name: (lambda *a, **k: None) for method in SimObject.cxx_exports
})
+class SystemC_ScModule(SystemC_ScObject):
+ type = 'SystemC_ScModule'
+ abstract = True
+ cxx_class = 'sc_core::sc_module'
+ cxx_header = 'systemc/ext/core/sc_module.hh'
+
try:
import _m5
except: