Replace De Morgan's law comment with basic Or logic description

This commit is contained in:
2025-08-30 19:23:29 -04:00
parent c39ce212b4
commit 396902dee7

View File

@@ -11,7 +11,7 @@ CHIP Or {
OUT out;
PARTS:
// De Morgan's law
// Or = Not(And(Not(a), Not(b)))
Not(in=a, out=tmp1);
Not(in=b, out=tmp2);
And(a=tmp1, b=tmp2, out=tmp3);