From 276ca4eedac31b3c9a99ff209a8aa3a75ee1cd5e Mon Sep 17 00:00:00 2001 From: Lofty Date: Wed, 24 Sep 2025 16:29:38 +0100 Subject: [PATCH] synth_analogdevices: remove scopeinfo cells --- techlibs/analogdevices/synth_analogdevices.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/techlibs/analogdevices/synth_analogdevices.cc b/techlibs/analogdevices/synth_analogdevices.cc index 2973bd619..75fc59e99 100644 --- a/techlibs/analogdevices/synth_analogdevices.cc +++ b/techlibs/analogdevices/synth_analogdevices.cc @@ -495,8 +495,10 @@ struct SynthAnalogDevicesPass : public ScriptPass } if (check_label("edif")) { - if (!edif_file.empty() || help_mode) - run(stringf("write_edif -pvector bra %s", edif_file.c_str())); + if (!edif_file.empty() || help_mode) { + run("delete t:$scopeinfo"); + run(stringf("write_edif %s", edif_file.c_str())); + } } } } SynthAnalogDevicesPass;