Jump to content

Serial binary adder

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by ZyMOS (talk | contribs) at 06:05, 11 February 2007 (moved Serial binary adders to Serial binary adder: shouldn't be plural). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The serial binary adder is a digital circuit that performs binary addition bit by bit. The serial full adder has three single bit inputs for the numbers to be added and the carry in There are two single bit outputs for the sum and carry out. The carry in signal is the previously calculated carry out signal. The addition is performed by adding each bit, lowest to highest, once each period.

serial binary subtracter

The serial binary subtracter operates the same as the serial binary adder, except the subtracted number is in 2's complement.

Example of operation

Decimal
5+9=14
  • X=5, Y=9, Sum=14
Binary
0101+1001=1110
Addition of each step
Inputs Outputs
Cin X Y Sum Cout
0 1 1 0 1
1 0 0 1 0
0 1 0 1 0
0 0 1 1 0

*addition starts from lowest

Result=1110 or 14

References