blob: 15e0aa949b8d4e11135f93c22123902160621a7e [file]
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