mirror of
https://github.com/soconnor0919/eceg431.git
synced 2025-12-11 22:54:43 -05:00
19 lines
425 B
Plaintext
19 lines
425 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:
|
|
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);
|
|
}
|