top.v 92 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
module top (
input [7:0] S,
input [255:0] D,
output M256
);

assign M256 = D[S];

endmodule