Wednesday, November 21, 2012

Not Gate

// This file is part of the materials accompanying the book // "The Elements of Computing Systems" by Nisan and Schocken, // MIT Press. Book site: www.idc.ac.il/tecs // File name: projects/01/Not.hdl /** * Not gate: out = not in */ CHIP Not { IN in; OUT out; PARTS: // Put your code here. Nand(a=in, b=in, out=out); }