You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
284 B
14 lines
284 B
3 years ago
|
`timescale 1ns / 1ps
|
||
|
// 四端口多路选择器
|
||
|
module mux4 #(
|
||
|
parameter WIDTH = 32
|
||
|
)(
|
||
|
input logic [WIDTH-1:0] d00, d01, d10, d11,
|
||
|
input logic [1:0] s,
|
||
|
output logic [WIDTH-1:0] y
|
||
|
);
|
||
|
|
||
|
assign y = (s==2'b11) ? d11 : (s==2'b10) ? d10 : (s==2'b01) ? d01 : d00;
|
||
|
|
||
|
endmodule
|