top.v 135 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
module top (
input [5:0] S,
input [63:0] D,
output M256
);
`ifndef BUG
assign M256 = D[S];
`else
assign M256 = S[D];
`endif

endmodule