Multiplexers
Data selectors, more commonly called multiplexers (or just muxes), function by connecting one of their input signals to their output signal, as directed by their “select” or control input signals. Muxes have N data inputs and
Common mux sizes are 2:1 (1 select input), 4:1 (2 select inputs), and 8:1 (3 select inputs). The truth table in Fig. 1 below specifies the behavior of a 4:1 mux. Note the use of entered variables in the truth table—if entered variables were not used, the truth table would require six columns and 26 or 64 rows. In general, when entered-variable truth tables are used to define a circuit, “control” inputs are shown as column-heading variables, and data inputs are used as entered variables.
The truth table can easily be modified for muxes that handle different numbers of inputs by adding or removing control input columns. A minimal mux circuit can be designed by transferring the information in the truth table to a K-map, or by simply inspecting the truth table and writing an SOP equation directly. A minimal equation for the 4:1 mux is as follows (you are encouraged to verify that this is a minimal equation):
An N-input mux is a simple SOP circuit constructed from N AND gates each with
Mux circuits often use an enable input in addition to the other inputs. The enable input functions as a sort of global on/off switch, driving the output to logic ‘0’ when it is de-asserted, and allowing normal mux operation when it is asserted. Figure 2 below shows the block diagram of mux with enable.
Larger muxes can easily be constructed from smaller muxes. For example, an 8:1 mux can be created from two 4:1 muxes and one 2:1 mux if the outputs from the 4:1 muxes drive the data inputs of the 2:1 mux, and the most-significant select input drives the select input of the 2:1 mux.
Muxes are most often used in digital circuits to transfer data elements from a memory array to data processing circuits in a computer system. The memory address is presented on the mux select lines, and the contents of the addressed memory location are presented on the mux data inputs (this application of muxes will be presented in later projects that deal with memory systems). Since most data elements in computer systems are bytes, or words consisting of 8, 16, or 32 bits, muxes used in computer circuits must switch 8, 16, 32 or more signals all at once. Muxes that can switch many signals simultaneously are called “bus muxes”. A block diagram and schematic for a bus mux that can select one of four 8-bit data elements is shown in Fig. 3 below.
Since this most common application of multiplexers is beyond our current presentation, we will consider a less common, somewhat contrived application. Consider the K-map representation of a given logic function, where each K-map cell contains a ‘0’, ‘1’, or an entered variable expression. Each unique combination of K-map index variables selects a particular K-map cell (e.g., cell 6 of an 8 cell K-map is selected when A=1, B=1, C=0). Now consider a mux, where each unique combination of select inputs selects a particular data input to be passed to the output (e.g., I6 of an 8 input mux can be selected by setting the select inputs to A=1, B=1, C=0). It follows that if the input signals in a given logic function are connected to the select inputs of a mux, and those same input signals are used as K-map index variables, then each cell in the K-map corresponds to a particular mux data input. This suggests a mux can be used to implement a logic function by “connecting” the K-map cell connects to the data lines of the mux, and connecting the K-map index variables to the select lines of the mux. Mux data inputs are connected to: ‘0’ (or ground) when the corresponding K-map cell contains a ‘0’; ‘1’ (or Vdd) when the corresponding K-map cell contains a ‘1’; and if a K-map cell contains an entered variable expression, then a circuit implementing that expression is connected to the corresponding mux data input. Note that when a mux is used to implement a logic circuit directly from a truth table or K-map, logic minimization is not performed. This saves design time, but usually creates a less efficient circuit (however, a logic synthesizer would remove the inefficiencies before such a circuit was implemented in a programmable device).
Important Ideas
- Data selectors, more commonly called multiplexers (or just muxes), function by connecting one of their input signals to their output signal as directed by their “select” or control input signals.
- Common mux sizes are 2:1 (1 select input), 4:1 (2 select inputs), and 8:1 (3 select inputs).
- Muxes are most often used in digital circuits to transfer data elements from a memory array to data processing circuits in a computer system. The memory address is presented on the mux select lines, and the contents of the addressed memory location are presented on the mux data inputs.
- Muxes that can switch many signals simultaneously are called “bus muxes”.