17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
// This file is part of www.nand2tetris.org
|
|
// and the book "The Elements of Computing Systems"
|
|
// by Nisan and Schocken, MIT Press.
|
|
// File name: tools/builtInChips/FullAdder.hdl
|
|
/**
|
|
* Computes the sum of three bits.
|
|
*/
|
|
CHIP FullAdder {
|
|
|
|
IN a, b, c;
|
|
OUT sum, // LSB of a + b + c
|
|
carry; // MSB of a + b + c
|
|
|
|
BUILTIN FullAdder;
|
|
}
|
|
|