Half Adder Chip

Abstraction and Implementation of Half Adder Chip in Hardware Design Language and Java™.

Adder Chip

The chip used to add two n-bit numbers is known as Adder, also known as n-bit Adder.

Half Adder Chip

Half Adder chip is used to add 2-bits.

Chip name: HalfAdder
Inputs: a, b
Outputs: sum, carry
Function: sum = LSB of a + b
          carry = MSB of a + b
Abstraction of Half Adder Chip - Representation and Truth Table

Implementation of Half Adder Chip in HDL

The function in the above abstraction can help in the implementation of Half Adder Chip.

sum = a XOR b

carry = a AND b

Implementation of Half Adder Chip in Java™

Similar to the Implementation in HDL

Last updated