Add16 Chip

Abstraction and Implementation of 16-bit Adder Chip in Hardware Design Language and Java™.

Add16 (16-bit Adder) Chip

16-bit Adder chip is used to add two 16-bit numbers.

Chip name: Add16
Inputs: a[16], b[16]
Outputs: out[16]
Function: out = a + b
Comment: Integer 2's complement addition.
Overflow is neither detected nor handled
Abstraction of 16-bit Adder Chip - Representation and Truth Table

Implementation of 16-bit Adder Chip in HDL

The function in the above abstraction can help in the implementation of 16-bit Adder Chip.

You can use the Half Adder and Full Adder Chips you've built earlier.

Implementation of 16-bit Adder Chip in Java™

Similar to the Implementation in HDL

The Most Significant Bit is dropped.

Last updated