blob: ea8bb4c71bdeb552accf1e8901de1d132be51e89 [file]
module top (input [2:0] s, input [5:0] a, output y);
assign y = a[s];
endmodule