DLD EXE-4 - Implement of Adder Circuit Using Tinker Card
DLD EXE-4 - Implement of Adder Circuit Using Tinker Card
Aim :
Implementing half-adder and full-adder circuit using tinker card
and verifying it’s output.
THEORY:
Half Adder
The input bits in the half adder are two like A, B.
Full Adder
The input bits in the full adder are three like A, B & C-in
FULL ADDER:
Truth tables:
Half adder
A-input B-input S-output C-output
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Full adder
A-input B-input C-in-input Sum-output Carry-output
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
RESULT:
Thus, the half adder and full adder circuits was made in TINKERCARD software
and its truth table was verified from the outputs.