aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ecp5
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-30 18:08:41 +0200
committerGitHub <noreply@github.com>2019-04-30 18:08:41 +0200
commita27eeff573c685f9a36ba4bd67e56043ab5d4716 (patch)
tree78db7ba94131b7870a5305a1e7425ebaedde4d0a /techlibs/ecp5
parent5bc4de077aa95862d77dff5ce0d4b5e4a5eda9ba (diff)
parent9d117eba9d65cf978716f1c7d41e86466ca03fc6 (diff)
downloadyosys-a27eeff573c685f9a36ba4bd67e56043ab5d4716.tar.gz
yosys-a27eeff573c685f9a36ba4bd67e56043ab5d4716.tar.bz2
yosys-a27eeff573c685f9a36ba4bd67e56043ab5d4716.zip
Merge pull request #966 from YosysHQ/clifford/fix956
Drive dangling wires with init attr with their init value
Diffstat (limited to 'techlibs/ecp5')
-rw-r--r--techlibs/ecp5/synth_ecp5.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc
index 4b889d672..c6e12248e 100644
--- a/techlibs/ecp5/synth_ecp5.cc
+++ b/techlibs/ecp5/synth_ecp5.cc
@@ -253,7 +253,7 @@ struct SynthEcp5Pass : public ScriptPass
if (!nodffe)
run("dff2dffe -direct-match $_DFF_* -direct-match $__DFFS_*");
run("techmap -D NO_LUT -map +/ecp5/cells_map.v");
- run("opt_expr -mux_undef");
+ run("opt_expr -undriven -mux_undef");
run("simplemap");
run("ecp5_ffinit");
}