Problem Statement:
Design a combinational logic circuit that meets the following
specifications:
• Input: 3-bit binary integer (A), 2-bit binary integer (B).
• Output: 5-bit binary integer (X) = (AxB). For example, A=6, B=2,
X=6x2=12.
Notation:
• A=(A2,A1,A0)
• B=(B1,B0)
• X=(X4,X3,X2,X1,X0)
Required Output:
Show the truth table and a minimal logic expression for each of the
outputs. Also, draw a logic diagram using discrete gates.
Extra Credit:
Redesign by using multiplexers and minimal discrete logic as
appropriate.
1 |...