Dec16 Chip
Abstraction and Implementation of 16-bit Decrementer Chip in Hardware Design Language and Java™.
Dec16 (16-bit Decrementer) Chip
Chip name: Dec16
Inputs: in[16]
Outputs: out[16]
Function: out=in-1Implementation of 16-bit Decrementer Chip in HDL
CHIP Dec16 {
IN in[16];
OUT out[16];
PARTS:
Subtract16(a=in, b[0]=true, out=out);
}Implementation of 16-bit Decrementer Chip in Java™
Last updated