Files
nand2tetris/projects/01/Mux.hdl
T
QkoSad 7894b48931 .
2025-07-16 13:00:37 +03:00

17 lines
250 B
Plaintext
Executable File

/**
* Multiplexor:
* out = a if sel == 0
* b otherwise
*/
CHIP Mux {
IN a, b, sel;
OUT out;
PARTS:
Not(in=sel,out=notsel);
And(a=a,b=notsel,out=out1);
And(a=b,b=sel,out=out2);
Or(a=out1,b=out2,out=out);
}