Due: 5 pm Friday 18 February 2022
Summary: For this lab you will implement the major pieces of a 1-bit ALU. This requires that you build both an adder and multiplexor on your protoboard and connect them together so be careful with your layout.
Collaboration: You will work during lab in randomly assigned pairs. You must complete the work together in these groups, whether during or after the scheduled lab time.
Submitting: After completing each exercise, show your completed circuit to the instructor or a course mentor. If you are unable to complete the lab during class time, schedule a time during office hours to demonstrate each of your circuits.
You will once again use the TTL chips to build circuits. Please remember to:
You can find a TTL pinout diagram printed in the cabinet or in this pdf.
Remember also that it can help to label the coordinates of your physical wires on your circuit diagrams.
Using the logic diagram below, build a full adder on your protoboard.
Plan carefully; you will need to leave space to build a multiplexor from a decoder on your board in the next two parts of the lab.
Test your circuit using the truth table in Figure B.5.3 (p. B-717) of your textbook.
One way to think of a decoder is a binary to unary converter: the two input bits specify a binary number. That number determines which output line is turned on, while the rest are off.
Don’t disassemble your decoder—you will use it in the next step to build a four-input multiplexer.
Turn your two-bit decoder into a four-input multiplexer by adding four two-input AND gates and three two-input OR gates, as follows.
Use the two inputs to your decoder as the selector lines. Use four logic switches as your multiplexer input (for now). Connect each input to an AND gate, along with one of the decoder outputs. Connect all the AND gate outputs to a four-input OR gate, which you will have to construct from two-input OR gates. The logisim circuit below shows this circuit, using your existing decoder:
Now that you have a one-bit adder and a four-input multiplexor, complete your ALU with AND and OR gates. Use the selector in your multiplexor to choose between addition (selector at 00
), logical AND (selector at 01
), and logical OR (selector at 10
).
If you still have time, add a binvert
input so that your ALU can subtract as well as add.
b
and binvert
as inputs, draw the truth table for a one-bit selector whose inputs are \(b\) and \(\overline{b}\) with the binvert
control signal. (You should find the resulting circuit to be simpler than a general one-bit selector with two independent inputs.)binvert
and carry_in
inputs and test that your ALU implements subtraction correctly.Copyright © 2018, 2019, 2020, 2022 Marge Coahran, Charlie Curtsinger, Janet Davis, and Jerod Weinman
This work is licensed under a Creative Commons Attribution NonCommercial ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.