Files
eceg431/01/Mux.hdl
Sean O'Connor c39ce212b4 Simplify comments to be more concise and student-like
- Removed verbose explanations
- Made comments shorter and more casual
- Focus on key concepts rather than formal descriptions
2025-08-28 15:11:48 +02:00

20 lines
462 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/Mux.hdl
/**
* Multiplexor:
* if (sel = 0) out = a, else out = b
*/
CHIP Mux {
IN a, b, sel;
OUT out;
PARTS:
// sel=0 picks a, sel=1 picks b
Not(in=sel, out=tmp1);
And(a=a, b=tmp1, out=tmp2);
And(a=b, b=sel, out=tmp3);
Or(a=tmp2, b=tmp3, out=out);
}