3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-22 08:17:38 +00:00

synth_analogdevices: remove scopeinfo cells

This commit is contained in:
Lofty 2025-09-24 16:29:38 +01:00
parent 80f7d0ee6f
commit 9055d99215

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;