Files
nand2tetris/original/tools/builtInChips/Not.hdl

15 lines
294 B
Plaintext

// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: tools/builtInChips/Not.hdl
/**
* Not gate:
* out = ((in == 0), 1, 0)
*/
CHIP Not {
IN in;
OUT out;
BUILTIN Not;
}