3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-04 17:35:18 +00:00

abc: use newcelltypes

This commit is contained in:
Emil J. Tywoniak 2025-11-26 00:03:53 +01:00
parent d91e1c8607
commit 4ab22cbb97

View file

@ -43,7 +43,7 @@
#include "kernel/register.h" #include "kernel/register.h"
#include "kernel/sigtools.h" #include "kernel/sigtools.h"
#include "kernel/celltypes.h" #include "kernel/newcelltypes.h"
#include "kernel/ffinit.h" #include "kernel/ffinit.h"
#include "kernel/ff.h" #include "kernel/ff.h"
#include "kernel/cost.h" #include "kernel/cost.h"
@ -2455,7 +2455,7 @@ struct AbcPass : public Pass {
continue; continue;
} }
CellTypes ct(design); NewCellTypes ct(design);
std::vector<RTLIL::Cell*> all_cells = mod->selected_cells(); std::vector<RTLIL::Cell*> all_cells = mod->selected_cells();
pool<RTLIL::Cell*> unassigned_cells(all_cells.begin(), all_cells.end()); pool<RTLIL::Cell*> unassigned_cells(all_cells.begin(), all_cells.end());