elec224 goal 2

72
Goal 2 Logic Gates Combinational Logic Boolean Identities and De Morgan’s Laws Karnaugh Map Programmable Logic Devices Seven Segment Decoder / Driver Binary Decoder 4-bit Magnitude comparator ELEC 224 J. Altiti 1

Upload: jaltiti

Post on 02-Dec-2014

108 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Elec224 Goal 2

Goal 2 Logic Gates Combinational Logic Boolean Identities and De Morgan’s Laws Karnaugh Map Programmable Logic Devices Seven Segment Decoder / Driver Binary Decoder 4-bit Magnitude comparator

ELEC 224 J. Altiti1

Page 2: Elec224 Goal 2

Logic Gates

A logic gate performs a logical operation on one or more logic inputs and produces a single logic output. Anoutput of one logic gate can connect to the input of one or more other logic gates. Two outputs cannot be connected together.

Logic gates comes in packages called Integrated circuit (IC) or common used term (non technical) Chip as shown below.

Logic gates uses only two logic values; 0 (0V) and 1 (5V).Logic 0 (0V) can be: false, off, low, no, open switch.Logic 1 (5V) can be: true, on, high, yes, closed switch.

The 7400 IC, containing four NAND logic gates. The two additional contacts are supply power (+5 V) and the ground (0V).

ELEC 224 J. Altiti2

Page 3: Elec224 Goal 2

AND Gate

The Boolean expression for the AND operation is X = A • B . This is read as “X equals A and B.”X = 1 (5V) when A = 1 (5V) and B = 1 (5V).Truth table and circuit symbol for a two input AND gate are shown.

OR Gate

The Boolean expression for the OR operation is X = A + B . This is read as “X equals A or B.”X= 1 (5V) when A = 1 (5V) or B = 1 (5V).Truth table and circuit symbol for a two input OR gate are shown.

NOT Gate

The Boolean expression for the NOT operation is This is read as “ X equals not A ”, or“ X equals the inverse of A” , or “X equals the complement of A” Truth table and circuit symbol for the NOT gate is shown

ELEC 224 J. Altiti3

Page 4: Elec224 Goal 2

NAND Gate

The Boolean expression for the NAND operation is . This is read as “ X equals A nand B” Truth table and circuit symbol for the NAND gate is shown

The NAND gate can be constructed using the 2 basic gates (AND and NOT) as shown below

Also the NAND gate can be implemented using 2 NOT gates and 1 OR gate.

ELEC 224 J. Altiti4

Page 5: Elec224 Goal 2

NOR Gate

The Boolean expression for the NOR operation is . This is read as “ X equals A nor B” Truth table and circuit symbol for the NAND gate is show.

The NOR gate can be constructed using the 2 basic gates (OR and NOT) as shown below

Also the NOR gate can be implemented using 2 NOT gates and 1 AND gate

ELEC 224 J. Altiti5

Page 6: Elec224 Goal 2

XOR Gate

The Boolean expression for the XOR operation is . This is read as “ X equals A xor B” Truth table and circuit symbol for the XOR gate is show.

The XOR gate can be constructed using the 3 basic gates (AND, OR and NOT) as shown below

XNOR Gate

The Boolean expression for the XNOR operation is . This is read as “ x equals A xnor B” Truth table and circuit symbol for the XNOR gate is show.

The XOR gate can be constructed using the 3 basic gates (AND, OR and NOT) as shown below

ELEC 224 J. Altiti6

Page 7: Elec224 Goal 2

Integrated Circuits (IC)

All of the basic gates are available in several types of IC packages. They are identified by the lasttwo or three digits in the series designation.

For Example, 74LS00 means 74 = Logic Technology, LS = Low Power Schottky, 00 = Quad 2-inputNAND Gate.

Below are the pin configuration for some common IC gates

ELEC 224 J. Altiti7

Page 8: Elec224 Goal 2

Data Sheet

A typical data sheet consist of information page that shows the logic digram, package, electricalspecifications and characteristics.

ELEC 224 J. Altiti8

Page 9: Elec224 Goal 2

Applications

A seat Belt Alarm System

Home Security System

ELEC 224 J. Altiti9

Page 10: Elec224 Goal 2

Liquid Tank Level Indicator

ELEC 224 J. Altiti10

Page 11: Elec224 Goal 2

Airplane Landing Gear Monitoring System

ELEC 224 J. Altiti11

Page 12: Elec224 Goal 2

Combinational Logic CircuitsA combination of logic gates interconnected to produce a specific function. There is no feedback from output of the circuit to the input. The output is a function of the current input status.

Combinational logic circuits uses some or all of the basic logic gates AND, OR and NOT.

Example of combinational logic circuits:

ELEC 224 J. Altiti12

Page 13: Elec224 Goal 2

Designing Combinational Logic Circuits

To solve any logic design problem: Interpret the problem and set up its truth table. Write the AND (product) term for each case where the output equals 1. Combine the terms in OR form. Implement the circuit .

Example:A Petrol station has 2 underground tanks to store petrol. A level sensor attached to each tank produces 0V when the level of the petrol in the tank drops below a specified point. Design a circuit that will produce 5V to turn on a light when the level in any two tanks drops below the specified point.

Solution: Interpret the problem and set up its truth table

ELEC 224 J. Altiti13

Page 14: Elec224 Goal 2

Sensor = 0V when tank below specified level 5V when tank above specified level

Light = 5V Turn on 0V Turn off

Truth TableA B Output0 0 10 1 11 0 11 1 0

Write the AND (product) term for each case where the output equals 1.

A B Output0 0 10 1 11 0 11 1 0

Combine the terms in OR form

Implement the circuit .

ELEC 224 J. Altiti14

Page 15: Elec224 Goal 2

Deriving Boolean Expression for the output of a given Combinational Circuit

To Find the Boolean expression for the output of a given combinational circuit: Trace each input signal all that way to the output

Example:Find the Boolean expression for the output Q of the given circuit below.

Solution Trace each input signal all that way to the output

ELEC 224 J. Altiti15

Page 16: Elec224 Goal 2

Deriving the truth table for a given combinational circuit

To Find the truth table of a given combinational circuit Identify the number of input signals and list all possible combinations for the input For each input combination, trace the circuit all the way to the output.

Example:Find the truth table of the given circuit below

Solution: Identify the number of input signals and list all possible combinations for the input

Number of input signals = 3 (A ,B and C)Number of possible combinations (from 0 to 7)

A B C Output = Q0 0 00 0 10 1 00 1 11 0 01 0 11 1 01 1 1

For each input combination, trace the circuit all the way to the output.

1st Combination

2nd Combination

ELEC 224 J. Altiti16

Page 17: Elec224 Goal 2

3rd Combination

4th Combination

8th Combination

Finally the complete truth table is shown

ELEC 224 J. Altiti17

Page 18: Elec224 Goal 2

A B C Output = Q0 0 0 10 0 1 10 1 0 10 1 1 01 0 0 11 0 1 11 1 0 11 1 1 0

Deriving the output voltage waveform for a given input waveform

To Find the output voltage waveform for a given input waveform Identify the time slots where the input signals changes For each time slot, identify the voltage level for each input at intermediate points From the intermediate points compute the output voltage level

Example:Determine the output voltage waveform of the circuit below, given the input waveform.

Solution:

Identify the time slots where the input signals changes

For each time slot, identify the voltage level for each input at intermediate points

ELEC 224 J. Altiti18

Page 19: Elec224 Goal 2

From the intermediate points compute the output voltage level

Boolean Algebra and De Morgan’s Laws

ELEC 224 J. Altiti19

Page 20: Elec224 Goal 2

Boolean Algebra and De Morgan’s law are useful in optimizing (minimizing) expressions and thus reducing the logic circuit to their simplest form.

Boolean Algebra

Boolean Algebra is the mathematics of digital system. Boolean Algebra is divided into Laws andRules.

Boolean Algebra Laws:1. Commutative Law of Addition

A + B = B + A

2. Commutative Law of Multiplication:AB = BA

3. Associative Law of Addition:A + (B + C) = (A + B) + C

4. Associative Law of Multiplication:A(BC) = (AB)C

5. Distributive Law:A(B + C) = AB + AC

Boolean Algebra Rules:

1. Rule #1

ELEC 224 J. Altiti20

Page 21: Elec224 Goal 2

2. Rule #2

3. Rule #3

4. Rule #4

5. Rule #5

6. Rule #6

7. Rule #7

8. Rule #8

ELEC 224 J. Altiti21

Page 22: Elec224 Goal 2

9. Rule #9

10. Rule #10

11. Rule #11

12. Rule #12

Example (See page 13):A Petrol station has 2 underground tanks to store petrol. A level sensor attached to each tank produces 0V when the level of the petrol in the tank drops below a specified point. Design a circuit that will produce 5V to turn on a light when the level in any two tanks drops below the specified point.

ELEC 224 J. Altiti22

Page 23: Elec224 Goal 2

Sloution:

Using Boolean algebra the circuit can be minimized as follows:

Example:Design combinational circuit that satisfy the given truth table

Solution:ELEC 224 J. Altiti23

Page 24: Elec224 Goal 2

The output Boolean expression is obtained for G = 1

. The circuit below satisfy the truth table.

The circuit can be minimized by using Boolean Algebra

De Morgan’s Laws

Using De Morgans laws, makes it easy to manipulate Boolean expressions and simplify them orconvert them to forms most convenient for translation to electronic logic circuits.

The complement of AND is OR

The complement of OR is AND

The complement of two or more ANDed signals is equivalent to the OR of the complements of the individual signals

ELEC 224 J. Altiti24

Page 25: Elec224 Goal 2

The complement of two or more ORed signals is equivalent to the AND of the complements of the individual signals

Example:

Example: Prove that

Example: Prove that

ELEC 224 J. Altiti25

Page 26: Elec224 Goal 2

The Universal Property of NAND and NOR Gates

NAND and NOR gates are “universal” because they can be used to produce any of the other logicfunctions.

NAND Gate as an Inverter

NOR Gate as an Inverter

Two NAND Gates as an AND Gate

Three NOR Gates as an AND Gate

Three NAND Gates as an OR Gate

Two NOR Gates as an OR Gate

ELEC 224 J. Altiti26

Page 27: Elec224 Goal 2

Four NAND Gates as NOR Gate

Four NOR Gates as a NAND Gate

The rules for the transformations are: 1) The logical connective must be changed, (AND to OR, OR to AND).2) The logical state of each variable changes, (A to A , A to A).3) Finally the logical state of the complete expression must change,

(expression) to exp ression or exp ression to (expression).

Example: Use only NAND gates to implement the following circuits

ELEC 224 J. Altiti27

Page 28: Elec224 Goal 2

Solution: Using De Morgan’s

1. The logical connective must be changed, (AND to OR, OR to AND).

2. The logical state of each variable changes, (A to A , A to A).

3. Finally the logical state of the complete expression must change,(expression) to exp ression or exp ression to (expression).

Example: Use only NAND gates to implement the following circuits

ELEC 224 J. Altiti28

Page 29: Elec224 Goal 2

Solution: The output of the circuit is

Using De Morgan’s4. The logical connective must be changed, (AND to OR, OR to AND).

5. The logical state of each variable changes, (A to A , A to A).

6. Finally the logical state of the complete expression must change,(expression) to exp ression or exp ression to (expression).

Example: Use only NOR gates to implement the following circuits

ELEC 224 J. Altiti29

Page 30: Elec224 Goal 2

Solution: Using De Morgan’s1. The logical connective must be changed, (AND to OR, OR to AND).

2. The logical state of each variable changes, (A to A , A to A).

3. Finally the logical state of the complete expression must change,(expression) to exp ression or exp ression to (expression).

Karnaugh Map (K map)The K map is a graphical tool used to optimize (reduce) the output boolean expression thus reducing the circuit.

The truth table values are placed in the K map. Adjacent K map square differ in only one variable both horizontally and vertically. The pattern from top to bottom and left to right must be in the form

ELEC 224 J. Altiti30

Page 31: Elec224 Goal 2

Looping adjacent groups of 1, 2, 4, 8, 16, ….of 1s will result in further simplification. Looping may also be wrapped between top, bottom, and sides. When the largest possible groups have been looped, only the common terms are placed in the final

expression. Finally OR all groups that contain a 1.

Example:

Example:

ELEC 224 J. Altiti31

Page 32: Elec224 Goal 2

Example:

ELEC 224 J. Altiti32

Page 33: Elec224 Goal 2

ELEC 224 J. Altiti33

Page 34: Elec224 Goal 2

ELEC 224 J. Altiti34

Page 35: Elec224 Goal 2

ELEC 224 J. Altiti35

Page 36: Elec224 Goal 2

Example: Write the optimized Boolean expression for the output Z shown in k map below

Z =

ELEC 224 J. Altiti36

Page 37: Elec224 Goal 2

Programmable Logic Devices (PLD)Programmable logic devices (PLDs) are used in many applications to replace discrete Integrated Circuits.A PL containes logic gates and programmable switches that allow for different connections between the logic elements. PLD can implement many logic circuits.

The three common PLD devices are:1. Programmable Logic Array (PLA)2. Programmable Array Logic (PAL)3. Generic Array Logic (GAL)

Programmable Logic Array (PLA)

PLA consists of input buffers and inverters that provide the true and complement form for eachinput variable. A collection of AND gates, with inputs that are selectable (programmable) and acollection of OR gates, with inputs that are selectable (programmable)

ELEC 224 J. Altiti37

Page 38: Elec224 Goal 2

Actual Gate Level Diagram

Simplified Schematic of PAL

Each AND and OR gates have multiple inputs, but for simplicity the simplified schematic of a PALELEC 224 J. Altiti38

Page 39: Elec224 Goal 2

show one line as an input to each gate. To make a connection on the simplified schematic of PAL,place an X at the desired node as shown in the figure below.

Example: Design a logic circuit for the output using PLA

ELEC 224 J. Altiti39

Page 40: Elec224 Goal 2

Solution #1:

Total number of Gates = 4Total number of ICs =3 (one 7404, one 7408 and one 7432)

Solution #2:

Total number of Gates = 4Total number of ICs =1

Programmable Array Logic (PAL)

PAL consists of input buffers and inverters that provide the true and complement form for each

ELEC 224 J. Altiti40

Page 41: Elec224 Goal 2

input variable. A collection of AND gates, with inputs that are selectable (programmable) and acollection of OR gates, with inputs that are fixed.

Actual Gate Level Diagram

ELEC 224 J. Altiti41

Page 42: Elec224 Goal 2

Simplified Schematic of PAL

Example: Design a logic circuit for the output using PAL

Solution:

ELEC 224 J. Altiti42

Page 43: Elec224 Goal 2

Generic Array Logic (GAL)

GAL , like the PAL , has a programmable AND array and a fixed OR array with programmable output logic . The two main differences between GAL and PAL devices are

1. The GAL reprogrammable2. The GAL has programmable output configurations

Actual Gate Level Diagram

ELEC 224 J. Altiti43

Page 44: Elec224 Goal 2

Advantages of Programmable Logic Devices

Reduce chip counts therefore less board area, power, and wiring. Simplify prototype circuitry. Shorten the development cycle. Allow the hardware of a circuit to be easily upgraded. Reduce parts inventory (save money)

Standard PAL Part Numbering

Standard PAL come in variety of configurations , each of which is identified by a unique partnumber . This part number always begins with the prefix PAL . The first two digits following PALindicate the number of inputs , which includes outputs that can be configured as inputs . The letterfollowing the number of inputs designates the type of output: L-active-LOW , H-active-HIGH , or P-programmable polarity. The one or two digits that follow the output type is the number of outputs.

Example: PAL10L8

PAL: Programmable array logic10: Ten inputsL: Active-LOW output8: Eight outputsIn addition , a PAL part number may carry suffixes that specify speed , package type , andtemperature range.

Binary Decoder

ELEC 224 J. Altiti44

Page 45: Elec224 Goal 2

Decoder : A digital circuit designed to detect the presence of a particular digital state/input. Can have one output or multiple outputs.

Example : The simplest form of a decoder is the 2-Input AND. It detects the presence of ‘11’ on theinputs to generate a ‘1’ output.

Example: Design a circuit that generates a ‘1’ at the output when it detects `1001’ at the input.

A3 A2 A1 A0 Output = Q0 0 0 0 00 0 0 1 00 0 1 0 00 0 1 1 00 1 0 0 01 0 0 1 00 1 1 0 00 1 1 1 01 0 0 0 01 0 0 1 11 0 1 0 01 0 1 1 01 1 0 0 01 1 0 1 01 1 1 0 01 1 1 1 0

Example: Design a circuit that generates a ‘1’ at the output when it detects `1011’ at the input.

ELEC 224 J. Altiti45

Page 46: Elec224 Goal 2

A3 A2 A1 A0 Output = Q0 0 0 0 00 0 0 1 00 0 1 0 00 0 1 1 00 1 0 0 01 0 0 1 00 1 1 0 00 1 1 1 01 0 0 0 01 0 0 1 01 0 1 0 01 0 1 1 11 1 0 0 01 1 0 1 01 1 1 0 01 1 1 1 0

Example: Design a circuit that generates a ‘1’ at the output when it detects `1001’ or ‘1011’ at the input.

If the circuit is going to detect all possible input combinations, then it will become a very large with many ICs.

ELEC 224 J. Altiti46

Page 47: Elec224 Goal 2

It will be more logical to design a special function IC that will detect all possible input combination. The IC will have n inputs and 2n outputs. It is called n-to-2n lines decoder or 1-of-2n decoder. The output can be active high or active low.

The decoder below has 4 inputs and 2n = 16 outputs ( 4-to-16 lines decoder or 1-of-16 decoder). The output is active high. Each output corresponds to a specific input. If the input is ‘A3 = 0, A2 = 0, A1 = 0, A0 = 0’, then output number 0 is active ‘1’ and the reset of the outputs are inactive ‘0’. If the input changes to ‘A3 = 1, A2 = 0, A1 = 1, A0 = 1’, then output number 11 is active ‘1’ and the reset of the outputs are inactive ‘0’ and so on ….

The output of the decoder below is active low. If the input is ‘A3 = 0, A2 = 0, A1 = 0, A0 = 0’, then output number 0 is active ‘0’ and the reset of the outputs are inactive ‘1’. If the input changes to ‘A3 = 1, A2 = 0, A1 = 1, A0 = 1’, then output number 11 is active ‘0’ and the reset of the outputs are inactive ‘1’ and so on ….

Truth Table for 4-to-16 Lines Decoder (1-of-16 Decoder) – Active Low Output

ELEC 224 J. Altiti47

Page 48: Elec224 Goal 2

The 74HC154 1 –of-16 Decoder

The and inputs (pin #18 and pin #19) are chip selects (Enable) lines. They enable the chipto function when needed. Both lines need to be tied or driven low for the chip to function.

Example: A3 = 0, A2 = 0, A1 = 1, A0 = 1, , . What are the status of the output pinsSolution: Output # 3 (pin #4) is active = Low and the rest of the outputs are inactive = High.

Example: A3 = 0, A2 = 0, A1 = 0, A0 = 0, , . What are the status of the output pinsSolution: All of the outputs are inactive = High.

The 74LS42 BCD-To-Decimal Decoder

The BCD-To- Decimal decoder detects each BCD number ( 110 to 910). Each output corresponds to aELEC 224 J. Altiti48

Page 49: Elec224 Goal 2

specific BCD input. Output #4 (pin #5) corresponds to BCD 410 ‘A3 = 0, A2 = 1, A1 = 0, A0 = 0’.

Any input greater than 910 is invalid and will not be detected by the decoder which cause all of theoutputs will be inactive (5V).

The Seven Segment Display

SSD is a display device. SSDs are commonly used in electronics as a method of displaying numberor some letters. Below are a sample of available SSDs.

The figure below shows the basic layout of the segments in a SSD. The segments themselves areidentified with lower-case letters "a" through "g," with segment "a" at the top and then countingclockwise. SSD also include a decimal point ("dp"). A segment can be turned on by driving thesegement high (5V) or low (0V0 depending on the internal connections of the SSD.

With a Common Anode SSD shown below, a low (0V) at the segment pin turns the segment on, provided that the common anode point is connected high (5V).

ELEC 224 J. Altiti49

Page 50: Elec224 Goal 2

With a Common Cathode SSD shown below, a high (5V) at the segment pin turns the segment on, provided that the common cathode point is connected low (0V).

Below are the a) Pinout of a Common Cathode SSD b) Internal configurations and c) Interface

Example: What inputs should be driven high = 5V in the common cathode SSD to display ‘A’ ?Solution: a b c d e f g dp

ELEC 224 J. Altiti50

Page 51: Elec224 Goal 2

1 1 1 0 1 1 1 0

The 74LS47 and 74LS46 BCD-To-Seven Segment Decoder

The 74LS47 has active low outputs and it is suitable for common anode SSD where the 74LS46 hasActive high outputs and it is suitable for common cathode SSD. The input is a BCD (010 to 910)number which will be detected by decoder and in response will activate the corresponding outputsfor the SSD.

= Lamp Test. When low all segments in the SSD are turned on.= Ripple Blanking Input. Used for Zero Suppression

= Blanking Input / Ripple Blanking output. Used for Zero Suppression.

The number 06.030 can be display as 6.03 (zero suppression) by using the blanking controlpins and .

If = 0 and the BCD input is ‘0000’ then = 0 and all outputs are inactive = high andthe display of a common anode SSD will be blank.

If = 0 and the BCD input is ‘0000’ then =1 and the output will correspond to thethe BCD input

ELEC 224 J. Altiti51

Page 52: Elec224 Goal 2

The Comparator

The basic function of a comparator is to compare the magnitude of 2 binary numbers to determinewhether they are equal or not, and if they are not.

The XOR gate is a basic one bit comparator as shown below. If A = B then X =1, otherwise X = 0

Example: Design a circuit that compare two 2-bit binary numbers. The output of the circuit is equalELEC 224 J. Altiti52

Page 53: Elec224 Goal 2

to 1 if the numbers are equal otherwise ‘0’.

Solution: A = A1 A0 and B = B1 B0

The 74HC85 4-bit Magnitude Comparator

The 74HC85 compares two 4-bit binay numbers say A and B and determines whether the number areequal ( A = B) or Less than (A < B) or greater than (A > B).

To determine an inequality of binary number A and B, first examine the MSB in each number. Thefollowing conditions are possible:

1. If A3 = 1 and B3 = 0, then A > B2. if A3 = 0 and B3 = 1, then A < B3. if A3 = B3, then must examine the next lower bit position for inequality.

The 74HC85 has three cascading inputs A<B, A=B, A>B. these inputs allow several comparators to

ELEC 224 J. Altiti53

Page 54: Elec224 Goal 2

be cascaded for comparison of any number of bits greater than 4.

Example: Design a circuit that will compare two 4-bit binary numbers.Solution:

Example: Design a circuit that will compare two 8-bit binary numbers.

ELEC 224 J. Altiti54

Page 55: Elec224 Goal 2

Solution: 1. The cascading inputs of the lower-order comparator should be connected as follows A>B = 0 , A=B = 1 , A<B = 0.

2. The outputs of the lower-order comparator should be connected to the corresponding cascading inputs of the higher-order comparator.

ELEC 224 J. Altiti55