Files
eceg431/01/Not.hdl
Sean O'Connor c39ce212b4 Simplify comments to be more concise and student-like
- Removed verbose explanations
- Made comments shorter and more casual
- Focus on key concepts rather than formal descriptions
2025-08-28 15:11:48 +02:00

17 lines
350 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: projects/1/Not.hdl
/**
* Not gate:
* if (in) out = 0, else out = 1
*/
CHIP Not {
IN in;
OUT out;
PARTS:
// Not = Nand with same input
Nand(a=in, b=in, out=out);
}