Since muxcover uses MUX4s, blast them back to gates here

This commit is contained in:
Eddie Hung 2019-06-21 11:13:01 -07:00
parent dd22edcd28
commit c6b4653ebe
1 changed files with 7 additions and 0 deletions

View File

@ -84,3 +84,10 @@ module \$shiftx (A, B, Y);
end
endgenerate
endmodule
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