Practical 12
Practical 12
OBJECT:
To simulate a 2-bit half adder
and a 3-bit full adder circuit.
IC # 74LS32
IC # 74LS08
IC # 74LS86
APPARATUS:
Bread Board
Wires
5V Power supply
LED’s
INPUT OUTPUT
A B SUM ( ∑) CARRYY ( CO)
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Boolean Expression:
SUM = AB
CARRY = AB
INPUTS OUTPUTS
B CARRYY o
ol A B CIN SUM ea
( CO )
n 0 0 0 0 0
E 0 0 1 1 0
x
pr es
0 1 0 1 0
si o
n: 0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
SUM
1 = (A 1 1 1 1
B
) C
CARRY = (AB)Cin + AB
Description:
HALF ADDER:
A half adder accepts two binary digits on its input and
produces
two binary digits on its output, a sum bit and a carry bit.
FULL ADDER:
A full adder accepts two input bits and an input carry and
generates
a sum output and a carry output
CONCLUSION:
Half adder is the combination of XOR and AND gates where as
FULL
adder is the combination of two half adders.