Files
eceg431/01/Or.hdl
Sean O'Connor ecdc6ab2bc Refactor: Use simple tmp variable names instead of descriptive ones
- Changed nandOut -> tmp
- Changed notA, notB -> tmp1, tmp2
- Changed descriptive names -> tmp1, tmp2, tmp3, etc.

Makes code cleaner and more concise while maintaining functionality.
2025-08-28 14:39:07 +02:00

20 lines
463 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/Or.hdl
/**
* Or gate:
* if (a or b) out = 1, else out = 0
*/
CHIP Or {
IN a, b;
OUT out;
PARTS:
// Or(a,b) = Not(And(Not(a), Not(b))) - De Morgan's law
Not(in=a, out=tmp1);
Not(in=b, out=tmp2);
And(a=tmp1, b=tmp2, out=tmp3);
Not(in=tmp3, out=out);
}