Half Adder Chip
Abstraction and Implementation of Half Adder Chip in Hardware Design Language and Java™.
Last updated
Abstraction and Implementation of Half Adder Chip in Hardware Design Language and Java™.
Last updated
The chip used to add two n-bit numbers is known as Adder, also known as n-bit Adder.
Half Adder chip is used to add 2-bits.
The function in the above abstraction can help in the implementation of Half Adder Chip.
sum = a XOR b
carry = a AND b
Similar to the Implementation in HDL