How do you plan to solve it?
/*Write solution code here*/ module selector3( input [7:0] a, b, c, input [1:0] sel, output [7:0] y ); assign y = (sel == 2'b00) ? a : (sel == 2'b01) ? b : (sel == 2'b10) ? c : 8'h00; endmodule