sel_mux.sv 82 Bytes
Newer Older
1
module top (input [2:0] s, input [5:0] a, output y);
2 3
  assign y = a[s];
endmodule