From 77e1f748a5c559f343f80d461c32db07b49b971f Mon Sep 17 00:00:00 2001 From: Patrick Urban Date: Fri, 15 Nov 2024 09:49:49 +0100 Subject: [PATCH] gatemate: run `simplemap` after `muxcover` to prevent unmapped multiplexers --- techlibs/gatemate/synth_gatemate.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/techlibs/gatemate/synth_gatemate.cc b/techlibs/gatemate/synth_gatemate.cc index 1d46d7929..fa36252f5 100644 --- a/techlibs/gatemate/synth_gatemate.cc +++ b/techlibs/gatemate/synth_gatemate.cc @@ -301,6 +301,7 @@ struct SynthGateMatePass : public ScriptPass } run("muxcover " + muxcover_args); run("opt -full"); + run("simplemap"); run("techmap -map +/gatemate/mux_map.v"); }