3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-09 09:21:58 +00:00

synth_analogdevices: remove scopeinfo cells

This commit is contained in:
Lofty 2025-09-24 16:29:38 +01:00
parent 091a417b35
commit 276ca4eeda

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;