mirror of
https://github.com/soconnor0919/eceg431.git
synced 2025-12-11 06:34:43 -05:00
- Changed nandOut -> tmp - Changed notA, notB -> tmp1, tmp2 - Changed descriptive names -> tmp1, tmp2, tmp3, etc. Makes code cleaner and more concise while maintaining functionality.
21 lines
530 B
Plaintext
21 lines
530 B
Plaintext
// This file is part of www.nand2tetris.org
|
|
// and the book "The Elements of Computing Systems"
|
|
// by Nisan and Schocken, MIT Press.
|
|
// File name: projects/1/Xor.hdl
|
|
/**
|
|
* Exclusive-or gate:
|
|
* if ((a and Not(b)) or (Not(a) and b)) out = 1, else out = 0
|
|
*/
|
|
CHIP Xor {
|
|
IN a, b;
|
|
OUT out;
|
|
|
|
PARTS:
|
|
// Xor(a,b) = Or(And(a, Not(b)), And(Not(a), b))
|
|
Not(in=a, out=tmp1);
|
|
Not(in=b, out=tmp2);
|
|
And(a=a, b=tmp2, out=tmp3);
|
|
And(a=tmp1, b=b, out=tmp4);
|
|
Or(a=tmp3, b=tmp4, out=out);
|
|
}
|