blob: ae0204e37eb73f23efd3e99d664a454c9954c8d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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/builtIn/Nand.hdl
/**
* Nand gate: out = a Nand b.
*/
CHIP Nand {
IN a, b;
OUT out;
BUILTIN Nand;
}
|