mirror of https://github.com/YosysHQ/yosys.git
Remove $_MUX4_ techmap rule
This commit is contained in:
parent
39e0e006d5
commit
bbf3ad90f5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue