Half Subtractor
Introduction
Subtractor circuits take two binary numbers as input and subtract one binary number input from the other binary number input. Similar to adders, it gives out two outputs, difference and borrow (carry-in the case of Adder). There are two types of subtractors.
- Half Subtractor
- Full Subtractor
Truth Table
Logical Expression
Difference = A XOR B
Borrow =
Implementation
Limitation of Half Subtractor-
- Half subtractors do not take into account “Borrow-in” from the previous circuit.
- This is a major drawback of half subtractors.
- This is because real-time scenarios involve subtracting the multiple numbers of bits which can not be accomplished using half subtractors.
Comments
Post a Comment