3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-01 18:38:48 +00:00

ecp5: Use abc -dress

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah 2019-02-06 22:20:39 +01:00
parent 58c22dae31
commit 95789c6136

View file

@ -268,9 +268,9 @@ struct SynthEcp5Pass : public ScriptPass
} }
run("techmap -map +/ecp5/latches_map.v"); run("techmap -map +/ecp5/latches_map.v");
if (nomux) if (nomux)
run("abc -lut 4"); run("abc -lut 4 -dress");
else else
run("abc -lut 4:7"); run("abc -lut 4:7 -dress");
run("clean"); run("clean");
} }