aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-12-19 19:52:31 +0100
committerGitHub <noreply@github.com>2018-12-19 19:52:31 +0100
commit93d44bb9a613b46a80642b8ce71295db18fadbc5 (patch)
tree4386e8b7f8a4d31e3c0849b2c219c723a541dbe1 /techlibs
parentc98d44ac1264af679aa6eef6da86eb609a5e0ae9 (diff)
parentc9513c695a76124ef1155343e3c058767c418051 (diff)
downloadyosys-93d44bb9a613b46a80642b8ce71295db18fadbc5.tar.gz
yosys-93d44bb9a613b46a80642b8ce71295db18fadbc5.tar.bz2
yosys-93d44bb9a613b46a80642b8ce71295db18fadbc5.zip
Merge pull request #752 from Icenowy/anlogic-lut-cost
Anlogic: let LUT5/6 have more cost than LUT4-
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/anlogic/synth_anlogic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/anlogic/synth_anlogic.cc b/techlibs/anlogic/synth_anlogic.cc
index a4eafeddf..9c44599ea 100644
--- a/techlibs/anlogic/synth_anlogic.cc
+++ b/techlibs/anlogic/synth_anlogic.cc
@@ -176,7 +176,7 @@ struct SynthAnlogicPass : public ScriptPass
if (check_label("map_luts"))
{
- run("abc -lut 6");
+ run("abc -lut 4:6");
run("clean");
}