3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-22 20:03:31 +00:00

newcelltypes: TurboCellTypes -> StaticCellTypes

This commit is contained in:
Emil J. Tywoniak 2025-11-25 16:11:05 +01:00
parent 6adc08b0e5
commit 35ccaa60d7
3 changed files with 6 additions and 6 deletions

View file

@ -431,7 +431,7 @@ void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bool cons
if (cell->type.in(ID($dffe), ID($adffe), ID($aldffe), ID($sdffe), ID($sdffce), ID($dffsre), ID($dlatch), ID($adlatch), ID($dlatchsr)))
handle_polarity_inv(cell, ID::EN, ID::EN_POLARITY, assign_map, invert_map);
if (!TurboCellTypes::Compat::stdcells_mem(cell->type))
if (!StaticCellTypes::Compat::stdcells_mem(cell->type))
continue;
handle_clkpol_celltype_swap(cell, "$_SR_N?_", "$_SR_P?_", ID::S, assign_map, invert_map);