mirror of
https://github.com/soconnor0919/eceg431.git
synced 2025-12-11 22:54:43 -05:00
Implement basic logic gates: Not, And, Or, Xor, Mux, DMux
This commit is contained in:
@@ -4,12 +4,16 @@
|
||||
// File name: projects/1/Or.hdl
|
||||
/**
|
||||
* Or gate:
|
||||
* if (a or b) out = 1, else out = 0
|
||||
* if (a or b) out = 1, else out = 0
|
||||
*/
|
||||
CHIP Or {
|
||||
IN a, b;
|
||||
OUT out;
|
||||
|
||||
PARTS:
|
||||
//// Replace this comment with your code.
|
||||
// Or(a,b) = Not(And(Not(a), Not(b))) - De Morgan's law
|
||||
Not(in=a, out=notA);
|
||||
Not(in=b, out=notB);
|
||||
And(a=notA, b=notB, out=andOut);
|
||||
Not(in=andOut, out=out);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user