mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-09 07:33:25 +00:00
expose command to not skip 'internal' wires beginning with '$'
This commit is contained in:
parent
8f36013fac
commit
e7c7ab8fc0
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ struct dff_map_bit_info_t {
|
||||||
|
|
||||||
bool consider_wire(RTLIL::Wire *wire, std::map<RTLIL::IdString, dff_map_info_t> &dff_dq_map)
|
bool consider_wire(RTLIL::Wire *wire, std::map<RTLIL::IdString, dff_map_info_t> &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;
|
return false;
|
||||||
if (wire->port_input)
|
if (wire->port_input)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue