Design a circuit receives two 3-bit numbers at the input
and produces the maximum of both numbers at the output.
Specification
modulemax3(a, b, max);
input [2:0] a, b;
output [2:0] max;
Input
a and b are the two 3-bit input numbers.
Output
max is the 3-bit output number.
About statements
The official statement of a problem is always the one
in the PDF document. The HTML version of the statement
is also given to help you, but may contain some content
that is not well displayed. In case of doubt, always use the PDF.