diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-06-23 17:25:46 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-06-23 18:24:53 +0200 |
commit | 88e7f90663f440b24d97a65804ee23b1d82dbed7 (patch) | |
tree | fc1d103152be86dbb4fc83b5566b17e9b1490445 /techlibs/ecp5/synth_ecp5.cc | |
parent | e71d82759029470663037eb299791d03fef83287 (diff) | |
download | yosys-88e7f90663f440b24d97a65804ee23b1d82dbed7.tar.gz yosys-88e7f90663f440b24d97a65804ee23b1d82dbed7.tar.bz2 yosys-88e7f90663f440b24d97a65804ee23b1d82dbed7.zip |
Update dff2dffe, dff2dffs, zinit to new FF types.
Diffstat (limited to 'techlibs/ecp5/synth_ecp5.cc')
-rw-r--r-- | techlibs/ecp5/synth_ecp5.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc index c9451e76b..0874b954a 100644 --- a/techlibs/ecp5/synth_ecp5.cc +++ b/techlibs/ecp5/synth_ecp5.cc @@ -314,9 +314,9 @@ struct SynthEcp5Pass : public ScriptPass run("dff2dffs"); run("opt_clean"); if (!nodffe) - run("dff2dffe -direct-match $_DFF_* -direct-match $__DFFS_*"); + run("dff2dffe -direct-match $_DFF_* -direct-match $_SDFF_*"); if ((abc9 && dff) || help_mode) - run("zinit -all w:* t:$_DFF_?_ t:$_DFFE_??_ t:$__DFFS*", "(only if -abc9 and -dff"); + run("zinit -all w:* t:$_DFF_?_ t:$_DFFE_??_ t:$_SDFF*", "(only if -abc9 and -dff"); run(stringf("techmap -D NO_LUT %s -map +/ecp5/cells_map.v", help_mode ? "[-D ASYNC_PRLD]" : (asyncprld ? "-D ASYNC_PRLD" : ""))); run("opt_expr -undriven -mux_undef"); run("simplemap"); |