Address & subtractor
Address & subtractor
Subtractor
Adding and Subtracting numbers is very simple in digital
electronics. To do this for quickly and efficiently, Most of the for binary
numbers (numbers made of 1 and 0), we use circuits like the Parallel
Adder and Parallel Subtractor. These types of circuits can handle more
than one bit at a time, making the process faster.
Binary Addition
Binary addition works sane as a to regular addition, but it only uses two digits: 0
and 1.
Always remember this in your mind
0+0=0
0+1=1
1+0=1
1 + 1 = 10 (1 is a carry)
Example
We are working on 13 = 1 1 0 1 and 11 = 1 0 1 1
1 1 0 1 + 1 0 1 1 ──────────── 1 1 0 0 0
Binary Subtraction
• A single full adder performs the addition of two one bit numbers and an input
carry. But a Parallel Adder is a digital circuit capable of finding the
arithmetic sum of two binary numbers that is greater than one bit in length by
operating on corresponding pairs of bits in parallel. It consists of full adders
connected in a chain where the output carry from each full adder is connected
to the carry input of the next higher order full adder in the chain.
• A n bit parallel adder requires n full adders to perform the operation.
• So for the two-bit number, two adders are needed while for four bit number,
four adders are needed and so on. Parallel adders normally incorporate carry
lookahead logic to ensure that carry propagation between subsequent stages of
addition does not limit addition speed.
Parallel Subtractor
• A Parallel Subtractor is a digital circuit capable of finding the arithmetic
difference of two binary numbers that is more than one bit in length by
operating on pairs of bits in parallel. The parallel subtractor can be
designed in several ways including combination of half and full
subtractors, all full subtractors or all full adders with the complement of
the number being subtracted input.
Thank you