A Programmable Logic Device Lecture 4.3. A Programmable Logic Device Multiple-input Gates A 2-Input, 1-Output PLD.

Slides:



Advertisements
Similar presentations
Basic Logic Gates Discussion D5.1 Section Sections 13-3, 13-4.
Advertisements

Logic Gates.
Morgan Kaufmann Publishers
Multiplexer as a Universal Function Generator Lecture L6.7 Section 6.2.
Mengenal Gerbang Logika (Logic Gate)
Universal Gates Sum of Products Products of Sum
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
The GAL16V8 PLD Module M2.1 Chapter 4. Basic PLD Structure.
Transistor-Transistor Logic (TTL) Lecture L4.1. Transistor-Transistor Logic (TTL) Developed in mid-1960s Large family (74xx) of chips from basic gates.
Basic Digital Design Discussion D2.3. Basic Digital Design Sum of Products Design –Minterms Product of Sums Design –Maxterms.
CS 140 Lecture 6: Other Types of Gates Professor CK Cheng 1.
Basic Digital Design Discussion D2.3. Basic Digital Design Sum of Products Design –Minterms Product of Sums Design –Maxterms.
Multiplexer as a Universal Function Generator
Introduction to Computer Engineering by Richard E. Haskell Basic Logic Gates Module M1.1 Section 3.1.
Lab 1 Structure of a PLD Module M1.4 Experiment 1 (p. 40)
Implementing Digital Circuits Lecture L3.1. Implementing Digital Circuits Transistors and Integrated Circuits Transistor-Transistor Logic (TTL) Programmable.
CS 140 Lecture 7 Professor CK Cheng 10/17/02. Combinational Logic  Complete set of gates  Other types of gates 1)XOR 2)NAND / NOR 3)Block Diagram Transfers.
In a not gate, if the input is on(1) the output is off (0) and vice versa.

LOGIC GATES Logic generally has only 2 states, ON or OFF, represented by 1 or 0. Logic gates react to inputs in certain ways. Symbol for AND gate INPUT.
XOR and XNOR Logic Gates. XOR Function Output Y is TRUE if input A OR input B are TRUE Exclusively, else it is FALSE. Logic Symbol  Description  Truth.
NOCTI Review Lesson 4 Objectives:
Transistors and Logic Circuits. Transistor control voltage in voltage out control high allows current to flow -- switch is closed (on) control low stops.
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
Quiz What are the results of the following 4-bit bitwise logical operations? NOT OR NOR AND
Basic Logic Operations and Standard Logic Gates (Lecture #1) ECE 331 – Digital System Design.
AUP2G57 configured as flip flop Dual Configurable Logic Design Contest.
Logic Gates It’s Only Logical. Logic Gates Are the switches that computers and similar devices use. They hold their state until something changes. Are.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Exclusive OR Gate. Logically, the exclusive OR (XOR) operation can be seen as either of the following operations:exclusive OR (XOR) 1. A AND NOT B OR.
Basic logic gates  AND gate:The truth table is given by A.BBA
Gates and Logic Dr John Cowell phones off (please)
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
How does a Computer Add ? Logic Gates within chips: AND Gate A B Output OR Gate A B Output A B A B
4–1 Gates Let’s examine the processing of the following six types of gates NOT AND OR XOR NAND NOR Typically, logic diagrams are black and white, and the.
Logic Gates Digital Logic Design. What is a logic gate? A switch with an output that will only turn on when inputs are in particular positions.
Basic Gates and ICs 74LS00 Quad 2-Input NAND gate 74LS02 Quad 2-Input NOR gate 74LS04 Quad 2-Input NOT gate 74LS08 Quad 2-Input AND gate 74LS32 Quad 2-Input.
Chapter 3 Digital circuits. 3.1 Logic signals - Gates Binary system : (binary bits or digits) - 0 & 1 - LOW & HIGH - Negated and Asserted.
Eng. Mai Z. Alyazji October, 2016
ECE 3130 Digital Electronics and Design
Transistors and Logic Circuits
ECE 331 – Digital System Design
Exclusive OR Gate.
Discussion D5.1 Section Sections 13-3, 13-4
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Digital Logic & Design Lecture 05
Logic Gates.
KS4 Electricity – Electronic systems
13 Digital Logic Circuits.
Gates Type AND denoted by X.Y OR denoted by X + Y NOR denoted by X + Y
GCSE Computer Science – Logic Gates & Boolean Expressions
Discussion D5.1 Section Sections 13-3, 13-4
DIGITAL ELECTRONICS B.SC FY
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
Logic Gates.
Discussion D5.1 Section Sections 13-3, 13-4
Programmable Logic Devices
Chapter 2 Gates.
Basic Logic Gates.
Digital Logic Experiment
FIGURE 5-1 MOS Transistor, Symbols, and Switch Models
Basic Logic Operations
Eng. Ahmed M Bader El-Din October, 2018
Introduction to Logic diagrams and truth tables
Introduction to Logic diagrams and truth tables
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

A Programmable Logic Device Lecture 4.3

A Programmable Logic Device Multiple-input Gates A 2-Input, 1-Output PLD

Multiple-input Gates Z Z Z Z

Multiple-input AND Gate Z 1 Output is HIGH only if all inputs are HIGH Z 1 An open input will float HIGH

Multiple-input OR Gate Output is LOW only if all inputs are LOW Z 2 2 Z

Multiple-input NAND Gate Output is LOW only if all inputs are HIGH Z 3 3 Z

Multiple-input NOR Gate Output is HIGH only if all inputs are LOW Z 4 4 Z

A Programmable Logic Device

A = X & !X & Y & !Y = 0 & 0 = 0

A Programmable Logic Device A = X & !X & Y & !Y = 0 & 0 = 0 Z = A # B = 0 # B = B

A PLD AND Gate

A PLD OR Gate

Sum of Products Design X Y Z Design an XOR gate m1 = !X & Y m2 = X & !Y Z = m1 # m2 = (!X & Y) # (X & !Y)

A PLD XOR Gate

What type of gate is this? XY X!XY!Y A B 1 2 Z removable jumpers

What type of gate is this? XY X!XY!Y A B 1 2 Z removable jumpers

Lab 2 – Structure of a PLD