mirror of
https://github.com/soconnor0919/eceg431.git
synced 2025-12-11 06:34:43 -05:00
19 lines
342 B
Plaintext
Executable File
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);
|
|
}
|