From 396902dee7ba0df36b2a41869897b5585bae8545 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Sat, 30 Aug 2025 19:23:29 -0400 Subject: [PATCH] Replace De Morgan's law comment with basic Or logic description --- 01/Or.hdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01/Or.hdl b/01/Or.hdl index 7b8e87c..3c054b6 100644 --- a/01/Or.hdl +++ b/01/Or.hdl @@ -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);