
Build a combinational circuit that splits an input half-word (16 bits,
[15:0] ) into lower [7:0] and upper [15:8] bytes.

module TopModule (
  input [15:0] in,
  output [7:0] out_hi,
  output [7:0] out_lo
);

