Increase the set of PnR-excluded cells

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2024-01-23 12:16:14 +01:00
parent 4220ce1007
commit 8968c84ce6

View File

@ -448,7 +448,7 @@ template <typename FrontendType> struct GenericFrontend
void import_leaf_cell(HierModuleState &m, const std::string &name, const cell_dat_t &cd)
{
auto cell_type = impl.get_cell_type(cd);
if (cell_type == "$scopeinfo")
if (cell_type == "$scopeinfo" || cell_type == "$print" || cell_type == "$check")
return;
IdString inst_name = unique_name(m.prefix, name, false);
ctx->hierarchy[m.path].leaf_cells_by_gname[inst_name] = ctx->id(name);