blob: 5dac27f8117f27b0a3256bfd32ac26549f81a65b [file] [log] [blame]
module top (
input [5:0] S,
input [63:0] D,
output M256
);
assign M256 = D[S];
endmodule