blob: ccecf30230f94c658fb5c017dcd7ac5d7e5b3d0d [file] [log] [blame]
module top(...);
input a, b, s;
output y;
assign y = s?a:b;
endmodule