// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/00/Off.hdl /** * Off gate: * out = false (off) */ CHIP Off { IN a, b; OUT out; PARTS: // always output false Nand(a=true, b=true, out=out); }