diff options
author | David Shah <davey1576@gmail.com> | 2018-12-16 17:43:57 +0000 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2019-02-06 22:23:13 +0100 |
commit | 7ef2333497940a9f235d36f38a727f2533bab902 (patch) | |
tree | 936b9e3c0cf1f98fda9faa302c972b3f15d3fc12 /techlibs | |
parent | 8524a479b15ff89db48872c57103c60be77142af (diff) | |
download | yosys-7ef2333497940a9f235d36f38a727f2533bab902.tar.gz yosys-7ef2333497940a9f235d36f38a727f2533bab902.tar.bz2 yosys-7ef2333497940a9f235d36f38a727f2533bab902.zip |
ice40: Use abc -dress in synth_ice40
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index f900453e8..ba013fef2 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -282,7 +282,7 @@ struct SynthIce40Pass : public ScriptPass run("techmap -map +/gate2lut.v -D LUT_WIDTH=4", "(only if -noabc)"); } if (!noabc) { - run("abc -lut 4", "(skip if -noabc)"); + run("abc -dress -lut 4", "(skip if -noabc)"); } run("clean"); if (relut || help_mode) { |