From 22e04ac81e9cb428544aab915a9a479763171b13 Mon Sep 17 00:00:00 2001 From: Lofty Date: Mon, 20 Oct 2025 18:23:25 +0100 Subject: [PATCH] analogdevices: ignore $assert cells --- techlibs/analogdevices/synth_analogdevices.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techlibs/analogdevices/synth_analogdevices.cc b/techlibs/analogdevices/synth_analogdevices.cc index 8a41408c8..abb95ea33 100644 --- a/techlibs/analogdevices/synth_analogdevices.cc +++ b/techlibs/analogdevices/synth_analogdevices.cc @@ -506,7 +506,7 @@ struct SynthAnalogDevicesPass : public ScriptPass if (check_label("edif")) { if (!edif_file.empty() || help_mode) { - run("delete t:$scopeinfo"); + run("delete t:$assert t:$scopeinfo"); run(stringf("write_edif %s", edif_file.c_str())); } }