Prev Problem
Next Problem

50. 3-Way Selector

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

/*Write solution code here*/
module selector3(
    input wire [1:0] sel,
    input wire [7:0] a,
    input wire [7:0] b,
    input wire [7:0] c,
    output reg [7:0] y
);
always @(*) begin
    y=8'h00 ;
if (sel==2'b00) begin
y=a;
end
else if (sel==2'b01) begin
y=b;
end 
else if (sel==2'b10) begin
y=c;
end 
else begin
y=8'h00;
end 

end
endmodule

 

Was this helpful?
Upvote
Downvote