aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gatemate/synth_gatemate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/gatemate/synth_gatemate.cc')
-rw-r--r--techlibs/gatemate/synth_gatemate.cc11
1 files changed, 4 insertions, 7 deletions
diff --git a/techlibs/gatemate/synth_gatemate.cc b/techlibs/gatemate/synth_gatemate.cc
index 424d48b25..b570e1e2a 100644
--- a/techlibs/gatemate/synth_gatemate.cc
+++ b/techlibs/gatemate/synth_gatemate.cc
@@ -275,7 +275,7 @@ struct SynthGateMatePass : public ScriptPass
run("opt -undriven -fine");
}
- if (check_label("map_addf", "(skip if '-noaddf')"))
+ if (check_label("map_gates"))
{
std::string techmap_args = "";
if (!noaddf) {
@@ -292,8 +292,8 @@ struct SynthGateMatePass : public ScriptPass
{
if (!noiopad) {
run("iopadmap -bits "
- "-inpad $__inpad Y:I "
- "-outpad $__outpad A:O "
+ "-inpad CC_IBUF Y:I "
+ "-outpad CC_OBUF A:O "
"-toutpad $__toutpad OE:A:O "
"-tinoutpad $__tinoutpad OE:Y:A:IO"
);
@@ -305,10 +305,7 @@ struct SynthGateMatePass : public ScriptPass
if (check_label("map_regs"))
{
run("opt_clean");
- run("dfflegalize -cell $_DFF_?_ 0 -cell $_DFF_???_ 0 "
- "-cell $_DFFE_??_ 0 -cell $_DFFE_????_ 0 "
- "-cell $_DLATCH_?_ x -cell $_DLATCH_???_ x"
- );
+ run("dfflegalize -cell $_DFFE_????_ x -cell $_DLATCH_???_ x");
run("techmap -map +/gatemate/reg_map.v");
run("opt_expr -mux_undef");
run("simplemap");