blob: 0fa176f95ef88a52bb61cf21662112d16e1bc593 [file]
module top (
input [7:0] S,
input [255:0] D,
output M256
);
assign M256 = D[S];
endmodule