Files
eceg431/00/Off.hdl

20 lines
390 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:
// Put your code here:
// Nand(a=true, b=false, out=out); // old
Nand(a=true, b=true, out=out);
}