
Given an 8-bit input vector [7:0], reverse its bit ordering.

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

