mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 03:16:22 +00:00
rtlil_bufnorm: fix setup_driven_wires constant handling on unknown port direction
This commit is contained in:
parent
350385f5a2
commit
5de8452b57
1 changed files with 2 additions and 1 deletions
|
|
@ -135,7 +135,8 @@ struct RTLIL::SigNormIndex
|
|||
wire->driverPort_ = port;
|
||||
|
||||
xlog("therefore connect port %s %s %s\n", port, log_signal(sig), wire->name);
|
||||
module->connect(sig, wire);
|
||||
// This orientation bias is potentially dangerous elsewhere
|
||||
module->connect(wire, sig);
|
||||
sig = wire;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue