aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2020-07-03 00:22:28 +0200
committerMarcelina Koƛcielnicka <mwk@0x04.net>2020-07-14 23:12:16 +0200
commita786091b469b1327f9676745370b2e67b1c35023 (patch)
tree0333e6d775c193b8ef3547d8989775a4384c5407 /techlibs
parent3209c0762a560d68ce7aef00942a8b3e440d5a61 (diff)
downloadyosys-a786091b469b1327f9676745370b2e67b1c35023.tar.gz
yosys-a786091b469b1327f9676745370b2e67b1c35023.tar.bz2
yosys-a786091b469b1327f9676745370b2e67b1c35023.zip
achronix: Use dfflegalize.
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/achronix/synth_achronix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/achronix/synth_achronix.cc b/techlibs/achronix/synth_achronix.cc
index ddd9822b9..b203828d2 100644
--- a/techlibs/achronix/synth_achronix.cc
+++ b/techlibs/achronix/synth_achronix.cc
@@ -144,12 +144,12 @@ struct SynthAchronixPass : public ScriptPass {
run("opt -fast -mux_undef -undriven -fine -full");
run("memory_map");
run("opt -undriven -fine");
- run("dff2dffe -direct-match $_DFF_*");
run("opt -fine");
run("techmap -map +/techmap.v");
run("opt -full");
run("clean -purge");
run("setundef -undriven -zero");
+ run("dfflegalize -cell $_DFF_P_ x");
if (retime || help_mode)
run("abc -markgroups -dff -D 1", "(only if -retime)");
}