summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/systemc/core/module.cc4
-rw-r--r--src/systemc/core/module.hh2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/systemc/core/module.cc b/src/systemc/core/module.cc
index f342b7f05..8cbde8f70 100644
--- a/src/systemc/core/module.cc
+++ b/src/systemc/core/module.cc
@@ -49,7 +49,7 @@ Module *_new_module;
Module::Module(const char *name) :
_name(name), _sc_mod(nullptr), _obj(nullptr), _ended(false),
- _deprecatedConstructor(false)
+ _deprecatedConstructor(false), bindingIndex(0)
{
panic_if(_new_module, "Previous module not finished.\n");
_new_module = this;
@@ -109,6 +109,7 @@ Module::bindPorts(std::vector<const ::sc_core::sc_bind_proxy *> &proxies)
auto proxyIt = proxies.begin();
auto portIt = ports.begin();
+ portIt += bindingIndex;
for (; proxyIt != proxies.end(); proxyIt++, portIt++) {
auto proxy = *proxyIt;
auto port = *portIt;
@@ -117,6 +118,7 @@ Module::bindPorts(std::vector<const ::sc_core::sc_bind_proxy *> &proxies)
else
port->vbind(*proxy->port());
}
+ bindingIndex += proxies.size();
}
void
diff --git a/src/systemc/core/module.hh b/src/systemc/core/module.hh
index 695f30565..8d6df81e6 100644
--- a/src/systemc/core/module.hh
+++ b/src/systemc/core/module.hh
@@ -125,6 +125,8 @@ class Module
std::vector<::sc_core::sc_port_base *> ports;
std::vector<::sc_core::sc_export_base *> exports;
+ int bindingIndex;
+
void beforeEndOfElaboration();
void endOfElaboration();
void startOfSimulation();