CHAPTER1: Digital Logic Circuits Combination Circuits

Similar documents
Review: Additional Boolean operations

Chapter 3 Ctd: Combinational Functions and Circuits

Functions. Computers take inputs and produce outputs, just like functions in math! Mathematical functions can be expressed in two ways:

Logic Design. Chapter 2: Introduction to Logic Circuits

MC9211 Computer Organization

Lecture 2 Review on Digital Logic (Part 1)

Standard Expression Forms

Systems I: Computer Organization and Architecture

Boolean Algebra, Gates and Circuits

Number System. Decimal to binary Binary to Decimal Binary to octal Binary to hexadecimal Hexadecimal to binary Octal to binary

Review for Test 1 : Ch1 5

Chapter 2: Switching Algebra and Logic Circuits

CS 121 Digital Logic Design. Chapter 2. Teacher Assistant. Hanin Abdulrahman

Chap 2. Combinational Logic Circuits

Chapter 2 (Lect 2) Canonical and Standard Forms. Standard Form. Other Logic Operators Logic Gates. Sum of Minterms Product of Maxterms

Slide Set 3. for ENEL 353 Fall Steve Norman, PhD, PEng. Electrical & Computer Engineering Schulich School of Engineering University of Calgary

II. COMBINATIONAL LOGIC DESIGN. - algebra defined on a set of 2 elements, {0, 1}, with binary operators multiply (AND), add (OR), and invert (NOT):

Chapter 2 Boolean Algebra and Logic Gates

211: Computer Architecture Summer 2016

ECEN 248: INTRODUCTION TO DIGITAL SYSTEMS DESIGN. Week 2 Dr. Srinivas Shakkottai Dept. of Electrical and Computer Engineering

Logic Gate Level. Part 2

Boolean Algebra and Digital Logic 2009, University of Colombo School of Computing

Chapter 7 Logic Circuits

KP/Worksheets: Propositional Logic, Boolean Algebra and Computer Hardware Page 1 of 8

CHAPTER 12 Boolean Algebra

Combinational Logic. By : Ali Mustafa

Combinational Logic Design Principles

Ex: Boolean expression for majority function F = A'BC + AB'C + ABC ' + ABC.

Chapter 2: Princess Sumaya Univ. Computer Engineering Dept.

CS 226: Digital Logic Design

Digital Circuit And Logic Design I. Lecture 3

UNIVERSITI TENAGA NASIONAL. College of Information Technology

This form sometimes used in logic circuit, example:

Chapter 2 Boolean Algebra and Logic Gates

Digital Logic (2) Boolean Algebra

EC-121 Digital Logic Design

Chapter 4. Combinational: Circuits with logic gates whose outputs depend on the present combination of the inputs. elements. Dr.

Every time has a value associated with it, not just some times. A variable can take on any value within a range

COMBINATIONAL LOGIC FUNCTIONS

EEE130 Digital Electronics I Lecture #4

Chapter 2 Combinational Logic Circuits

Chapter 2 Combinational Logic Circuits

Chapter 2: Boolean Algebra and Logic Gates

Lecture 5: NAND, NOR and XOR Gates, Simplification of Algebraic Expressions

EECS150 - Digital Design Lecture 19 - Combinational Logic Circuits : A Deep Dive

EECS150 - Digital Design Lecture 4 - Boolean Algebra I (Representations of Combinational Logic Circuits)

Chapter 2 Combinational Logic Circuits

ELCT201: DIGITAL LOGIC DESIGN

Logic. Combinational. inputs. outputs. the result. system can

MODULAR CIRCUITS CHAPTER 7

Outline. EECS150 - Digital Design Lecture 4 - Boolean Algebra I (Representations of Combinational Logic Circuits) Combinational Logic (CL) Defined

Discrete Mathematics. CS204: Spring, Jong C. Park Computer Science Department KAIST

Digital Logic Design. Combinational Logic

Contents. Chapter 2 Digital Circuits Page 1 of 30

E&CE 223 Digital Circuits & Systems. Lecture Transparencies (Boolean Algebra & Logic Gates) M. Sachdev

Chapter 4: Combinational Logic Solutions to Problems: [1, 5, 9, 12, 19, 23, 30, 33]

Electronics. Overview. Introducction to Synthetic Biology

Combinational Logic. Mantıksal Tasarım BBM231. section instructor: Ufuk Çelikcan

Digital Logic: Boolean Algebra and Gates. Textbook Chapter 3

SAMPLE ANSWERS MARKER COPY

Chapter 2. Boolean Algebra and Logic Gates

Chapter 2 : Boolean Algebra and Logic Gates

Why digital? Overview. Number Systems. Binary to Decimal conversion

Part 1: Digital Logic and Gates. Analog vs. Digital waveforms. The digital advantage. In real life...

Digital Logic. CS211 Computer Architecture. l Topics. l Transistors (Design & Types) l Logic Gates. l Combinational Circuits.

WEEK 2.1 BOOLEAN ALGEBRA

Chapter-2 BOOLEAN ALGEBRA

Boolean Algebra & Logic Gates. By : Ali Mustafa

SAU1A FUNDAMENTALS OF DIGITAL COMPUTERS

E&CE 223 Digital Circuits & Systems. Lecture Transparencies (Boolean Algebra & Logic Gates) M. Sachdev. Section 2: Boolean Algebra & Logic Gates

Digital System Design Combinational Logic. Assoc. Prof. Pradondet Nilagupta

Fundamentals of Computer Systems

EE40 Lec 15. Logic Synthesis and Sequential Logic Circuits

ECE 545 Digital System Design with VHDL Lecture 1. Digital Logic Refresher Part A Combinational Logic Building Blocks

Boolean Algebra and Digital Logic

ENG2410 Digital Design Combinational Logic Circuits

Logic and Boolean algebra

Unit 2 Session - 6 Combinational Logic Circuits

Gate-Level Minimization

DIGITAL CIRCUIT LOGIC BOOLEAN ALGEBRA

Circuits & Boolean algebra.

Combinational Logic. Review of Combinational Logic 1

Chapter 2 Boolean Algebra and Logic Gates

control in out in out Figure 1. Binary switch: (a) opened or off; (b) closed or on.

Combinatorial Logic Design Principles

ELCT201: DIGITAL LOGIC DESIGN

UNIT 4 MINTERM AND MAXTERM EXPANSIONS

Midterm Examination # 1 Wednesday, February 25, Duration of examination: 75 minutes

BOOLEAN ALGEBRA TRUTH TABLE

Logic Design Combinational Circuits. Digital Computer Design

Combinational Logic Fundamentals

Boolean Algebra and Logic Simplification

Week-I. Combinational Logic & Circuits

CHAPTER 2 BOOLEAN ALGEBRA

Lecture 6: Manipulation of Algebraic Functions, Boolean Algebra, Karnaugh Maps

CHAPTER III BOOLEAN ALGEBRA

Number System conversions

2009 Spring CS211 Digital Systems & Lab CHAPTER 2: INTRODUCTION TO LOGIC CIRCUITS

UC Berkeley College of Engineering, EECS Department CS61C: Representations of Combinational Logic Circuits

Logic Gates and Boolean Algebra

Transcription:

CS224: Computer Organization S.KHABET CHAPTER1: Digital Logic Circuits Combination Circuits 1

PRIMITIVE LOGIC GATES Each of our basic operations can be implemented in hardware using a primitive logic gate. Operation: AND (product) of two inputs OR (sum) of two inputs NOT (complement) on one input Expression: xy, or x y x + y x Logic gate: Truth table: x y xy 0 0 0 0 1 0 1 0 0 1 1 1 x y x + y 0 0 0 0 1 1 1 0 1 1 1 1 x x 0 1 1 0 4 2

ADDITIONAL LOGIC GATES Operation: NAND (NOT-AND) NOR (NOT-OR) X O R (exclusive OR) Expressions: (xy) = x + y (x + y) = x y x y = x y + xy Truth table: x y (xy) 0 0 1 0 1 1 1 0 1 1 1 0 x y (x+y) 0 0 1 0 1 0 1 0 0 1 1 0 x y x y 0 0 0 0 1 1 1 0 1 1 1 0 Logic gates: (xy) (x + y) x y 5 3

ADDITIONAL LOGIC GATES XNOR GATE Finally, the complement of the XOR function is the XNOR function. A two-input XNOR gate is true when its inputs are equal: Expression: (x y) = x y + xy Truth table: x y (x y) 0 0 1 0 1 0 1 0 0 1 1 1 6 4

LOGIC GATES PROPERTIES OR GATE 0 + x = x 1 + x = 1 x + x = 1 AND GATE 1. x = x 0. x = 0 x. x = 0 XOR GATE x 0 = x x x = 0 x 1 = x x x = 1 x (y z) = (x y) z [ Associative ] x y = y x [ Commutative ] The NAND and the NOR gates are universal: they can replace all other gates! 5

THE FUNDAMENTAL THEOREMS 0F BOOLEAN ALGEBRA 1. x + 0 = x 2. x 1 = x Identity 3. x + 1 = 1 4. x 0 = 0 Domination 5. x + x = x 6. x x = x Idempotence 7. x + x = 1 8. x x = 0 Complement 9. (x ) = x Double complement 10. x + y = y + x 11. xy = yx Commutative 12. x + (y + z) = (x + y) + z 13. x(yz) = (xy)z Associative 14. x(y + z) = xy + xz 15. x + yz = (x + y)(x + z) Distributive 16. (x + y) = x y 17. (xy) = x + y De Morgan s The left and right columns of theorems are duals 6

SOME MORE LAWS Here are some more useful laws. Notice the duals again! 1. x + xy = x 4. x(x + y) = x 2. xy + xy = x 5. (x + y)(x + y ) = x 3. x + x y = x + y 6. x(x + y) = xy xy + x z + yz = xy + x z (x + y)(x + z)(y + z) = (x + y)(x + z) We can prove these laws by either Making truth tables Using the axioms 7

FUNCTION SIMPLIFICATION We can do some simplifications to find an equivalent Boolean expression which is more simple than the original one by using two possible methods Algebraic Manipulation: By using Boolean algebra properties. Map Simplification : By using Karnaugh maps. f(x,y,z) = x y + xyz + x y = x (y + y) + xyz * Distributive; x y + x y = x (y + y) + = x 1 + xyz [ Axiom 7; y + y = 1 ] = x + xyz [ Axiom 2; x 1 = x + = (x + x)(x + yz) [ Distributive ] = 1 (x + yz) [ Axiom 7; x + x = 1 ] = x + yz [ Axiom 2 ] 8

STANDARD FORMS OF EXPRESSIONS We can write expressions in sum of products (SOP) or in product of sums (POS) A sum of products (SOP) expression contains: Only OR (sum) operations at the outermost level Each term that is summed must be a product of literals f(x,y,z) = y + x yz + xz A SOP expression can be implemented with NAND gates A product of sums (POS) expression contains: Only AND (product) operations at the outermost level Each term must be a sum of literals f(x,y,z) = y (x + y + z ) (x + z) A POS expression can be implemented with NOR gates 9

SUM OF MINTERMS FORM Every function can be written as a sum of minterms, which is a special kind of sum of products form The sum of minterms form for any function is unique x y z f(x,y,z) f (x,y,z) 0 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 1 1 1 0 1 0 0 0 1 1 0 1 0 1 1 1 0 1 0 1 1 1 0 1 f = x y z + x y z + x yz + x yz + xyz = m 0 + m 1 + m 2 + m 3 + m 6 = m(0,1,2,3,6) f = xy z + xy z + xyz = m 4 + m 5 + m 7 = m(4,5,7) f contains all the minterms not in f The symbol stands for sum of minterms that follow in parenthesis. 10

PRODUCT OF MAXTERMS FORM Every function can be written as a unique product of maxterms The product of maxterms form for any function is unique x y z f(x,y,z) f (x,y,z) 0 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 1 1 1 0 1 0 0 0 1 1 0 1 0 1 1 1 0 1 0 1 1 1 0 1 f = (x + y + z)(x + y + z )(x + y + z ) = M 4 M 5 M 7 = M(4,5,7) f = (x + y + z)(x + y + z )(x + y + z) (x + y + z )(x + y + z) = M 0 M 1 M 2 M 3 M 6 = M(0,1,2,3,6) f contains all the maxterms not in f The symbol stands for product of maxterms that follow in parenthesis. 11

MINTERMS AND MAXTERMS ARE RELATED Any minterm m i is the complement of the corresponding maxterm M i Minterm Shorthand Maxterm Shorthand x y z m 0 x y z m 1 x yz m 2 x yz m 3 xy z m 4 xy z m 5 xyz m 6 xyz m 7 x + y + z M 0 x + y + z M 1 x + y + z M 2 x + y + z M 3 x + y + z M 4 x + y + z M 5 x + y + z M 6 x + y + z M 7 For example, m 4 = M 4 because (xy z ) = x + y + z 12

CONVERTING BETWEEN STANDARD FORMS We can convert a sum of minterms to a product of maxterms From before f = m(0,1,2,3,6) and f = m(4,5,7) = m 4 + m 5 + m 7 complementing (f ) = (m 4 + m 5 + m 7 ) so f = m 4 m 5 m 7 * DeMorgan s law + = M 4 M 5 M 7 [ By the previous page ] = M(4,5,7) In general, just replace the minterms with maxterms, using maxterm numbers that don t appear in the sum of minterms: f = m(0,1,2,3,6) = M(4,5,7) The same thing works for converting from a product of maxterms to a sum of minterms 13

COMBINATIONAL CIRCUITS Circuits made up of gates, that don t have any feedback, are called combinatorial circuits (combinational) A combinational circuit is a connected arrangement of logic gates with a set of inputs and outputs. At any given time the binary values of the outputs are a function of the inputs. n input variables Combinational Circuit m output variables Combinational circuits are used in computers for generating binary control decisions and for providing digital components for data processing. 14

COMBINATORIAL CIRCUITS CIRCUIT ANALYSIS Steps to analyze a combinational circuit 1. Identify inputs and outputs 2. Draw the truth table (the number of rows depends on the number of inputs) 3. Show how the outputs change for each set of inputs 4. You may need intermediate results if the circuit is complicated 5. Find its function if necessary Example : Analyze the following combinational circuit 15

COMBINATORIAL CIRCUITS CIRCUIT DESIGN The goal of circuit design is to build hardware that computes some given function. The basic idea is to write the function as a Boolean expression, and then convert that to a circuit. Steps to design a combinational circuit 1. The problem is stated 2. The inputs and outputs are assigned letter symbols 3. The truth table that defines the relationships between inputs and outputs is derived 4. The simplified Boolean functions for each output are obtained 5. The diagram is drawn 16

CIRCUIT DESIGN Half Adder (HA) A Half Adder adds two bits and produces a two-bit result: a sum (the right bit) and a carry out (the left bit). Here are: But remember that it s binary: for example, 1 + 1 = 10. X Y C S 0 0 0 0 0 1 0 1 1 0 0 1 1 1 1 0 C = XY S = X Y + X Y = X Y truth table equations circuit block symbol 17

CIRCUIT DESIGN Full Adder (FA) A full adder circuit takes three bits of input, and produces a two-bit output consisting of a sum and a carry out. Using Boolean algebra (or K-maps), we get the equations shown here (XOR operations simplify the equations a bit). X Y C in C out S 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 1 1 1 0 1 0 0 0 1 1 0 1 1 0 1 1 0 1 0 1 1 1 1 1 S C out = m(1,2,4,7) = X Y C in + X Y C in + X Y C in + X Y C in = X (Y C in + Y C in ) + X (Y C in + Y C in ) = X (Y C in ) + X (Y C in ) = X Y C in = m(3,5,6,7) = X Y C in + X Y C in + X Y C in + X Y C in = (X Y + X Y ) C in + XY(C in + C in ) = (X Y) C in + XY 18

CIRCUIT DESIGN Full Adder Circuit It is called Full Adder because it can be builded by putting together two half adders! S C out = X Y C in = (X Y) C in + XY block symbol Hardware repetition simplifies hardware design 19

CIRCUIT DESIGN Parallel Adders : A 4-BIT ADDER Used to add 2 numbers in the parallel form Produce the Sum bits as parallel outputs. Four full adders together make a 4-bit adder. Total inputs are : Two 4-bit numbers and initial carry in, CI Outputs are: A 4-bit sum, S3 S2 S1 S0 and a carry out, CO block symbol block diagram of a 4-bit Adder 20

CIRCUIT DESIGN A two s complement Subtractor To find A - B with an adder, we ll need to: Complement each bit of B. Set the adder s carry in to 1. The net result is A + B + 1, where B + 1 is the two s complement negation of B. Remember that A3, B3 and S3 here are actually sign bits. 21

CIRCUIT DESIGN An Adder-Subtractor circuit When Sub = 0, the XOR gates output B3 B2 B1 B0 and the carry in is 0. The adder output will be A + B + 0, or just A + B. When Sub = 1, the XOR gates output B3 B2 B1 B0 and the carry in is 1. Thus, the adder output will be a two s complement subtraction, A - B. 22

DECODER Combinational circuit that takes an n-bit input and produces 2 n outputs. The n inputs represent a binary number that determines which of the 2 n outputs is uniquely true A 2-to-4 decoder operates according to the following truth table. The 2-bit input is called S1S0, and the four outputs are A0-A3. If the input is the binary number i, then output Ai is uniquely true. This circuit decodes a binary number into a one-of-four code. 2 3

A 2-TO-4 DECODER S 1 S 0 Q 0 Q 1 Q 2 Q 3 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 1 Logic diagram 24

ENABLE INPUTS Many devices have an additional enable input, which is used to activate or deactivate the device. Decoder may include one or more enable inputs to control the circuit operation The enable input may be activated with a 0 or 1 signal. If it is activated with a 1 signal E=1, decoder enabled (activated), so it behaves as specified earlier. Exactly one of the outputs will be 1. E=0, decoder disabled (deactivated), By convention, that means all of the decoder s outputs are 0. Decoders which contains more than one enable input satisfy a given logic condition in order to enable the circuit 25

A 2 TO 4 LINES DECODER EN=1 decoder enabled. Exactly one of the outputs will be 1. EN=0 decoder disabled. All of the decoder s outputs are 0 regardless of inputs A1 and A0. WITH ENABLE INPUT EN A 1 A 0 D 0 D 1 D 2 D 3 Decoder Block Diagram Abbreviate truth table Logic diagram 26

DECODER BLOCK DIAGRAM A decoder block provides abstraction: You can use the decoder as long as you know its truth table or equations, without knowing exactly what s inside. It makes diagrams simpler by hiding the internal circuitry. It simplifies hardware reuse. You don t have to keep rebuilding the decoder from scratch every time you need it. These blocks are like functions in programming! Q0 = S1 S0 Q1 = S1 S0 Q2 = S1 S0 Q3 = S1 S0 27

BLOCKS SYMBOLS AND APPLICATIONS Used to encapsulate common circuits like decoders. Treated as an individual entity. Block diagrams for 2-to-4 decoders. Q0 = S1 S0 Q1 = S1 S0 Q2 = S1 S0 Q3 = S1 S0 A decoder block provides abstraction: You can use the decoder as long as you know its truth table or equations, without knowing exactly what s inside. It makes diagrams simpler by hiding the internal circuitry. It simplifies hardware reuse. You don t have to keep rebuilding the decoder from scratch every time you need it. These blocks are like functions in programming! Decoders can be used to implement arbitrary functions A common decoder application is the decoding of address lines for memory chips. Decoders are largely used in memorization circuits 28

A 3-TO-8 DECODER Larger decoders are similar. Here is a 3-to-8 decoder. Again, only one output is true for any input combination. A 2 A 1 A 0 D 0 D 1 D 2 D 3 D 4 D 5 D 6 D 7 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 A 0 = S 2 S 1 S 0 A 1 = S 2 S 1 S 0 A 2 = S 2 S 1 S 0 A 3 = S 2 S 1 S 0 A 4 = S 2 S 1 S 0 A 5 = S 2 S 1 S 0 A 6 = S 2 S 1 S 0 A 7 = S 2 S 1 S 0 Truth table without EN Output equations 29

A 3-TO-8 DECODER Block diagram Logic diagram 30

DECODER EXPANSION Usefulness of enable input in combinational logic components. Enable inputs are convenient feature for interconnecting two or more circuits for the purpose of expanding the digital components. Only one decoder is activated at a special moment. Here s a 3-to-8 decoder constructed from two 2-to-4 decoders 31

DECODER EXPANSION S 2 S 1 S 0 Active Ouput 0 0 0 Q O 0 0 1 Q 1 0 1 0 Q 2 0 1 1 Q 3 1 0 0 Q 4 1 0 1 Q 5 1 1 0 Q 6 1 1 1 Q 7 32

A VARIATION OF THE STANDARD DECODER Active-high decoders. Q 3 = S 1 S 0 = m 3 Q 2 = S 1 S 0 = m 2 Q 1 = S 1 S 0 = m 1 Q 0 = S 1 S 0 = m 0 EN S 1 S 0 Q 0 Q 1 Q 2 Q 3 0 x x 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 1 1 0 0 0 1 0 1 1 1 0 0 0 1 Active-high decoders generate minterms Active-low decoder (inverted EN input and inverted outputs). Q 3 = S 1 +S 0 = M 3 Q 2 = S 1 +S 0 = M 2 Q 1 = S 1 +S 0 = M 1 Q 0 = S 1 +S 0 = M 0 An active-low decoders generate maxterms. EN S 1 S 0 Q 0 Q 1 Q 2 Q 3 0 0 0 0 1 1 1 0 0 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 1 1 1 0 1 x x 1 1 1 1 33

ENCODER An encoder performs the opposite function of a decoder A binary encoder encodes information (data) from 2 n inputs into an n-bit code (output) Exactly one of the inputs should have a value of one The outputs represent the binary number that identifies which input is equal to 1 Encoders reduce the number of bits needed to represent given information 34

ENCODER TRUTH TABLE D 7 D 6 D 5 D 4 D 3 D 2 D 1 D 0 A 2 A 1 A 0 Valeur 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 2 0 0 0 0 1 0 0 0 0 1 1 3 0 0 0 1 0 0 0 0 1 0 0 4 0 0 1 0 0 1 0 0 1 0 1 5 0 1 0 0 0 0 1 0 1 1 0 6 1 0 0 0 0 0 0 1 1 1 1 7 Truth table for Octal to Binary Encoder The encoder can be implemented with OR gates whose inputs are determined directly from the truth table 35

MULTIPLEXER A 2 n -to-1 multiplexer sends one of 2 n input lines to a single output line. A multiplexer has two sets of inputs: 2 n data input lines n select lines, to pick one of the 2 n data inputs The mux output is a single bit, which is one of the 2 n data inputs. Selection of a particular line is controlled by a set of selection variables or control lines. Selects binary information from one of many input lines. The other input lines are cut off. The multiplexer is also called a data selector. 36

MULTIPLEXER The simplest example is a 2-to-1 mux: Q = S D0 + S D1 The select bit S controls which of the data bits D0-D1 is chosen: If S=0, then D0 is the output (Q=D0). If S=1, then D1 is the output (Q=D1). 37

A 4-TO-1 MULTIPLEXER block diagram and abbreviated truth table for a 4-to-1 mux EN S1 S0 Y 1 0 0 D0 1 0 1 D1 1 1 0 D2 1 1 1 D3 0 x x 1 Y= S1 S0 D0 + S1 S0 D1 + S1S0 D2 + S1S0D3 38

A 4-TO-1 MULTIPLEXER Logic diagram S 0 and S 1 are selection inputs.they are decoded to select a particular AND gate 39

IMPLEMENTING FUNCTIONS WITH MULTIPLEXERS Muxes can be used to implement arbitrary functions. One way to implement a function of n variables is to use an n-to-1 mux: For each minterm m i of the function, connect 1 to mux data input Di. Each data input corresponds to one row of the truth table. Connect the function s input variables to the mux select inputs. These are used to indicate a particular input combination. For example, let s look at f(x,y,z) = m(1,2,6,7). x y z f 0 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 1 0 0 0 1 0 1 0 1 1 0 1 1 1 1 1 40

EXPANSION AND APPLICATIONS Multiplexer may have one or more enable input. The enable input may also be used for multiplexers expansion. Time-sharing computers multiplex the input from users terminals Used to deserialize information 41