mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-14 18:06:16 +00:00
Oopsy!
This commit is contained in:
parent
dd7ad14096
commit
88c847f733
1 changed files with 1 additions and 1 deletions
|
@ -2359,7 +2359,7 @@ void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module)
|
||||||
for (auto wire : module->wires()) {
|
for (auto wire : module->wires()) {
|
||||||
wires[wire->port_id] = wire;
|
wires[wire->port_id] = wire;
|
||||||
}
|
}
|
||||||
for (int port_id = 1; port_id < max_port_id; port_id++) {
|
for (int port_id = 1; port_id <= max_port_id; port_id++) {
|
||||||
Wire *wire = wires[port_id];
|
Wire *wire = wires[port_id];
|
||||||
if (wire) {
|
if (wire) {
|
||||||
if (port_id != 1)
|
if (port_id != 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue