This commit is contained in:
QkoSad
2025-07-16 13:00:37 +03:00
commit 7894b48931
806 changed files with 162532 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
CHIP Xor {
IN a, b;
OUT out;
PARTS:
Not(in=a,out=nota);
Not(in=b,out=notb);
And(a=a,b=notb,out=aAndnotb);
And(a=nota,b=b,out=notaAndb);
Or(a=aAndnotb,b=notaAndb,out=out);
}