mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 11:26:22 +00:00
rtlil: publish signorm fanout
This commit is contained in:
parent
8f62d5c657
commit
b9eae3f64b
2 changed files with 6 additions and 0 deletions
|
|
@ -498,6 +498,11 @@ const pool<RTLIL::PortBit> &RTLIL::Module::fanout(SigBit bit) {
|
|||
return found->second;
|
||||
}
|
||||
|
||||
const dict<RTLIL::SigBit, pool<RTLIL::PortBit>> &RTLIL::Module::signorm_fanout() const {
|
||||
log_assert(sig_norm_index != nullptr);
|
||||
return sig_norm_index->fanout;
|
||||
}
|
||||
|
||||
void RTLIL::Module::remove(RTLIL::Cell *cell)
|
||||
{
|
||||
while (!cell->connections_.empty())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue