abc9_ops: still emit delay table even box has no timing
[yosys.git] / passes / techmap / iopadmap.cc
index 531ac2b99efc65d6d0b7e79b82061b0c41e7d01e..a6e4fac14e03531d87e19448fed3030793cb4cb6 100644 (file)
@@ -423,6 +423,15 @@ struct IopadmapPass : public Pass {
                                        }
                                }
 
+                               if (wire->port_output) {
+                                       auto jt = new_wire->attributes.find(ID(init));
+                                       // For output ports, move \init attributes from old wire to new wire
+                                       if (jt != new_wire->attributes.end()) {
+                                               wire->attributes[ID(init)] = std::move(jt->second);
+                                               new_wire->attributes.erase(jt);
+                                       }
+                               }
+
                                wire->port_id = 0;
                                wire->port_input = false;
                                wire->port_output = false;