
Given four unsigned numbers, find the minimum. Unsigned numbers can be
compared with standard comparison operators (a < b).

module TopModule (
  input [7:0] a,
  input [7:0] b,
  input [7:0] c,
  input [7:0] d,
  output reg [7:0] min
);

