Design a combinational 4-bit multiplier. The circuit receives two
4-bit numbers and produces an 8-bit result. Specification
modulemultiplier4(A, B, AxB);
input [3:0] A, B;
output [7:0] AxB;
Input
A and B are the two 4-bit input numbers.
Output
AxB is the 8-bit output representing the product of the input numbers.
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.