From: Eddie Hung Date: Sat, 22 Jun 2019 01:12:33 +0000 (-0700) Subject: Remove $_MUX4_ techmap rule X-Git-Tag: working-ls180~1208^2~93 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbf3ad90f59a5b548d263c81ca83ca8f93f1c238;p=yosys.git Remove $_MUX4_ techmap rule --- diff --git a/techlibs/xilinx/mux_map.v b/techlibs/xilinx/mux_map.v index c47da155d..e28070359 100644 --- a/techlibs/xilinx/mux_map.v +++ b/techlibs/xilinx/mux_map.v @@ -69,14 +69,3 @@ module \$shiftx (A, B, Y); end endgenerate endmodule - -// FIXME: This rule exists only because we can't block muxcover -// from using MUX4s -- if we disable MUX4 it will use MUX8s -// instead - -module \$_MUX4_ (A, B, C, D, S, T, Y); -input A, B, C, D, S, T; -output Y; -assign Y = T ? (S ? D : C) : - (S ? B : A); -endmodule