Skip to content

Commit

Permalink
Merge pull request Silimate#23 from alaindargelas/fix_runtime_write_v…
Browse files Browse the repository at this point in the history
…erilog
  • Loading branch information
akashlevy authored Nov 17, 2024
2 parents dd7ad14 + 88c847f commit 1c29656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/verilog/verilog_backend.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2359,7 +2359,7 @@ void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module)
for (auto wire : module->wires()) {
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];
if (wire) {
if (port_id != 1)
Expand Down

0 comments on commit 1c29656

Please sign in to comment.