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 [7:0] a,b,c,
    input [1:0] sel,
    output reg [7:0] y
);
    always@(*) begin 
        if(sel == 0) y <= a;
        else if(sel == 1) y <= b;
        else if(sel == 2) y <= c;
        else y <= 8'h00;
    end
    
endmodule

 

Was this helpful?
Upvote
Downvote