Lab 6
Lab 6
“To construct half adder and full adder using combination circuit “
Adder:
An adder is a digital electronic circuit that performs addition of two binary numbers. It is one of the
fundamental building blocks of digital circuits and is used in a variety of applications, such as in
computers and other digital systems. There are different types of adders, including half adders, full
adders.
Half Adder:
A half adder is a basic adder that can add two single-digit binary numbers.
Truth Table:
Full Adder:
A full adder can add two single-digit binary numbers as well as a carry input from a previous addition.
To construct a half adder, you will need two inputs, A and B, and two outputs, S and C. The circuit can be
built using two logic gates: an XOR gate and an AND gate.
1. Connect the A and B inputs to the two input terminals of the XOR gate.
2. Connect the output of the XOR gate to the S output terminal.
3. Connect the A and B inputs to the two input terminals of the AND gate.
4. Connect the output of the AND gate to the C output terminal.
1. Connect the A and B inputs to the two input terminals of the first half adder.
2. Connect the C<sub>in</sub> input to the carry input terminal of the first half adder.
3. Connect the output terminals of the first half adder to the input terminals of the second half adder.
4. Connect the carry output terminal of the first half adder to the carry input terminal of the second
half adder.
5. Connect the output terminals of the second half adder to the input terminals of the OR gate.
6. Connect the output of the OR gate to the C<sub>out</sub> output terminal.
7. The output of the second half adder will be the S output.
Conclusion:
We learned about adder. The construction of full adder and half adder, and binary number addition.