1
0
mirror of synced 2026-01-28 13:09:09 +00:00

synth_analogdevices: remove scopeinfo cells

This commit is contained in:
Lofty
2025-09-24 16:29:38 +01:00
parent bf602c5a72
commit 0047b645d4

View File

@@ -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;