mirror of https://github.com/YosysHQ/icestorm.git
Merge pull request #175 from daveshah1/fix_lutcascade
icetime: Remove non-existent paths from ce/sr to ltout
This commit is contained in:
commit
d992fc76ae
|
|
@ -845,6 +845,11 @@ struct TimingAnalysis
|
|||
continue;
|
||||
}
|
||||
|
||||
if (driver_type == "LogicCell40" && driver_port == "ltout") {
|
||||
if (inport == "ce" || inport == "sr")
|
||||
continue;
|
||||
}
|
||||
|
||||
std::string *in_net = &netlist_cell_ports.at(driver_cell).at(inport);
|
||||
while (net_assignments.count(*in_net))
|
||||
in_net = &net_assignments.at(*in_net);
|
||||
|
|
|
|||
Loading…
Reference in New Issue