1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-04 07:43:23 +00:00

ice40: Another arch_place fix

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah
2018-06-14 21:52:01 +02:00
parent 66ea22bb5c
commit 355d33632c

View File

@@ -57,7 +57,7 @@ static bool logicCellsCompatible(const std::vector<const CellInfo *> &cells)
return false;
if (clk != get_net_or_nullptr(cell, "CLK"))
return false;
if (sr != get_net_or_nullptr(cell, "CEN"))
if (sr != get_net_or_nullptr(cell, "SR"))
return false;
if (dffs_neg != bool(std::stoi(cell->params.at("NEG_CLK"))))
return false;