// This file is part of the materials accompanying the book // "The Elements of Computing Systems" by Nisan and Schocken, // MIT Press 2004. Book site: http://www.idc.ac.il/tecs // File name: tools/builtIn/And.hdl. Version: beta 1.4. /** * Not gate: out = not in. */ CHIP Not { IN in; OUT out; PARTS: Nand(a=in, b=in, out=out); }