0% found this document useful (0 votes)
7 views

Assignment 6

Uploaded by

sreejeet17111995
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Assignment 6

Uploaded by

sreejeet17111995
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Design Multiplexer using AND, OR gates

A Multiplexer (or MUX), also known as a data selector, is a device that selects between several
digital input signals and forwards the selected input to a single output line. The selection is
directed by a separate set of digital inputs known as select lines. A multiplexer of 2n inputs
has n select lines, which are used to select which input line to send to the output.
Block diagram of Multiplexer

Design Multiplexer using AND, OR gates


Truth Table of Multiplexer

S0 S1 I Output
0 0 I0 I0
0 1 I1 I1
1 0 I2 I2
1 1 I3 I3

Output = I0 S0’ S1’ + I1 S0 S1’ + I2 S0’ S1 + I3 S0 S1


Discussion
All possible output of multiplexer are as follows:
1. When S0 is 0, S1 is 0 and I is I0 which decide the output result as I0.
2. When S0 is 0, S1 is 1 and I is I1 which decide the output result as I1.
3. When S0 is 1, S1 is 0 and I is I2 which decide the output result as I2.
4. When S0 is 1, S1 is 1 and I is I3 which decide the output result as I3.

You might also like