Administrator
|
A 2 way Mux 16 only has a single select input. Look at section 1.2.3 more closely.
The number of available options (input channels in the case of a multiplexer or output channels in the case of a demultiplexer) is 2^n where n is the number of select bits.
If you have:
1 select bit, you have 2^1 = 2 channels.
2 select bit, you have 2^2 = 4 channels.
3 select bit, you have 2^3 = 8 channels.
4 select bit, you have 2^4 = 16 channels.
etc.
|