mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
Remove $_MUX4_ techmap rule
This commit is contained in:
parent
39e0e006d5
commit
bbf3ad90f5
1 changed files with 0 additions and 11 deletions
|
@ -69,14 +69,3 @@ module \$shiftx (A, B, Y);
|
||||||
end
|
end
|
||||||
endgenerate
|
endgenerate
|
||||||
endmodule
|
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…
Add table
Add a link
Reference in a new issue