From: Eddie Hung Date: Sat, 16 Feb 2019 21:45:17 +0000 (-0800) Subject: expose command to not skip 'internal' wires beginning with '$' X-Git-Tag: working-ls180~1237^2~319 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7c7ab8fc06b3accc7f6d98313ec09e54a605124;p=yosys.git expose command to not skip 'internal' wires beginning with '$' --- diff --git a/passes/sat/expose.cc b/passes/sat/expose.cc index 809345486..3add9a9eb 100644 --- a/passes/sat/expose.cc +++ b/passes/sat/expose.cc @@ -42,7 +42,7 @@ struct dff_map_bit_info_t { bool consider_wire(RTLIL::Wire *wire, std::map &dff_dq_map) { - if (wire->name[0] == '$' || dff_dq_map.count(wire->name)) + if (/*wire->name[0] == '$' ||*/ dff_dq_map.count(wire->name)) return false; if (wire->port_input) return false;