Fix scope

This commit is contained in:
Miodrag Milanovic 2022-01-31 08:56:29 +01:00
parent f04d1398e5
commit 190e44f0da
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ struct SimInstance
Module *mod = module->design->module(cell->type);
if (mod != nullptr) {
dirty_children.insert(new SimInstance(shared, scope + "." + RTLIL::unescape_id(module->name), mod, cell, this));
dirty_children.insert(new SimInstance(shared, scope + "." + RTLIL::unescape_id(cell->name), mod, cell, this));
}
for (auto &port : cell->connections()) {