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; return false;
if (clk != get_net_or_nullptr(cell, "CLK")) if (clk != get_net_or_nullptr(cell, "CLK"))
return false; return false;
if (sr != get_net_or_nullptr(cell, "CEN")) if (sr != get_net_or_nullptr(cell, "SR"))
return false; return false;
if (dffs_neg != bool(std::stoi(cell->params.at("NEG_CLK")))) if (dffs_neg != bool(std::stoi(cell->params.at("NEG_CLK"))))
return false; return false;