3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-10 19:07:20 +00:00

Update opt_lut_ins and stat for analogdevices and remove ecp5

This commit is contained in:
Miodrag Milanovic 2026-03-06 09:10:36 +01:00
parent da83c93673
commit 52533b0d1c
5 changed files with 16 additions and 15 deletions

View file

@ -490,7 +490,7 @@ struct SynthAnalogDevicesPass : public ScriptPass
techmap_args += " -D LUT_WIDTH=6";
run("techmap " + techmap_args);
run("xilinx_dffopt");
run("opt_lut_ins -tech xilinx");
run("opt_lut_ins -tech analogdevices");
}
if (check_label("finalize")) {
@ -499,7 +499,7 @@ struct SynthAnalogDevicesPass : public ScriptPass
if (check_label("check")) {
run("hierarchy -check");
run("stat -tech xilinx");
run("stat -tech analogdevices");
run("check -noinit");
run("blackbox =A:whitebox");
}