project01: Comments/cleanup

This commit is contained in:
2025-09-03 22:10:34 -04:00
parent dd31b8f1dc
commit 934f1ad2f5
11 changed files with 54 additions and 33 deletions

View File

@@ -11,7 +11,7 @@ CHIP And {
OUT out;
PARTS:
// And = Not(Nand)
// Nand = Not(Nand), so And = Not(Nand)
Nand(a=a, b=b, out=tmp);
Not(in=tmp, out=out);
}