feat: change files

This commit is contained in:
2026-01-14 11:08:29 +01:00
parent 7f6ebd1edf
commit ad9f301859
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// 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/And.hdl
/**
* And gate:
* if (a and b) out = 1, else out = 0
*/
CHIP And {
IN a, b;
OUT out;
PARTS:
// Reverse the Nand Gate with the newly created Not chip/gate
Nand(a=a, b=b, out=notOut);
Not(in= notOut, out= out);
}