Block Diagram: 8-Bit Adder
Block Diagram: 8-Bit Adder
The 8-bit Adder is used to add two binary numbers along with carry-in to get the output number in binary. The inputs
A and B are two different binary numbers, and the output S is a binary number that is both A and B added together.
Cout is the extra bit to represent overflow.
Block diagram
Truth table
A B Cin S Cout
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