mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-17 04:35:44 +00:00
WIP
This commit is contained in:
parent
afdae7b87e
commit
c3ffbf6fae
229 changed files with 3902 additions and 3835 deletions
|
|
@ -181,9 +181,9 @@ struct SplitnetsPass : public Pass {
|
|||
for (auto c : module->cells())
|
||||
for (auto &p : c->connections())
|
||||
{
|
||||
if (!ct.cell_known(c->type))
|
||||
if (!ct.cell_known(c->type.ref()))
|
||||
continue;
|
||||
if (!ct.cell_output(c->type, p.first))
|
||||
if (!ct.cell_output(c->type.ref(), p.first))
|
||||
continue;
|
||||
|
||||
RTLIL::SigSpec sig = p.second;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue