
Given a 100-bit input vector [99:0], reverse its bit ordering.

a

module TopModule (
  input [99:0] in,
  output reg [99:0] out
);

