From 5cfbc1604cb75b39ce92120bab61168cea84da35 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Thu, 11 Jan 2024 14:54:02 +0100 Subject: [PATCH] Ignore $scopeinfo in write_edif --- backends/edif/edif.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc index 00fd7f54e..553eb23d6 100644 --- a/backends/edif/edif.cc +++ b/backends/edif/edif.cc @@ -213,6 +213,9 @@ struct EdifBackend : public Backend { for (auto cell : module->cells()) { + if (cell->type == ID($scopeinfo)) + continue; + if (design->module(cell->type) == nullptr || design->module(cell->type)->get_blackbox_attribute()) { lib_cell_ports[cell->type]; for (auto p : cell->connections())