How do you plan to solve it?
/*Write solution code here*/ module selector3( input [7:0] a, input [7:0] b, input [7:0] c, input [1:0] sel, output reg [7:0] y ); always@* begin if(sel=='b00) y = a; else if(sel == 'b01) y = b; else if(sel=='b10) y = c; else y = 0; end endmodule