Files
eceg431/00/Off.hdl

19 lines
342 B
Plaintext
Executable File

// 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);
}