3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 09:04:08 +00:00

gatemate: run simplemap after muxcover to prevent unmapped multiplexers

This commit is contained in:
Patrick Urban 2024-11-15 09:49:49 +01:00
parent bbb6bbd12a
commit 77e1f748a5

View file

@ -301,6 +301,7 @@ struct SynthGateMatePass : public ScriptPass
}
run("muxcover " + muxcover_args);
run("opt -full");
run("simplemap");
run("techmap -map +/gatemate/mux_map.v");
}