Two bit dmux
A demultiplexer performs the opposite function of a multiplexer: It takes a single input and channels it to one of two possible outputs according to a selector bit that specifies which output to choose.
Truth Table
Input | Selector | Output Channel A | Output Channel B |
---|---|---|---|
0 | 0 | 0 | 0 |
1 | 0 | 1 | 0 |
0 | 1 | 0 | 0 |
1 | 1 | 0 | 1 |