diff options
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/arch_place.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/arch_place.cc b/ice40/arch_place.cc index 206811e6..c02add1c 100644 --- a/ice40/arch_place.cc +++ b/ice40/arch_place.cc @@ -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; |