Boolean Algebra and Gates

Total Page:16

File Type:pdf, Size:1020Kb

Boolean Algebra and Gates BOOLEAN ALGEBRA In mathematics and mathematical logic, Boolean algebra is the branch of algebra in which the values of the variables are the truth values true and false, usually denoted 1 and 0, respectively. A set of rules or Laws of Boolean Algebra expressions have been invented to help reduce the number of logic gates needed to perform a particular logic operation resulting in a list of functions or theorems known commonly as the Laws of Boolean Algebra. Boolean Algebra is the mathematics we use to analyse digital gates and circuits. We can use these “Laws of Boolean” to both reduce and simplify a complex Boolean expression in an attempt to reduce the number of logic gates required. Boolean Algebra is therefore a system of mathematics based on logic that has its own set of rules or laws which are used to define and reduce Boolean expressions. The variables used in Boolean Algebra only have one of two possible values, a logic “0” and a logic “1” but an expression can have an infinite number of variables all labelled individually to represent inputs to the expression, For example, variables A, B, C etc, giving us a logical expression of A + B = C, but each variable can ONLY be a 0 or a 1. • P1: X = 0 or X = 1 • P2: 0 . 0 = 0 • P3: 1 + 1 = 1 • P4: 0 + 0 = 0 • P5: 1 . 1 = 1 • P6: 1 . 0 = 0 . 1 = 0 • P7: 1 + 0 = 0 + 1 = 1 Table 1: Boolean Postulates Laws of Boolean Algebra Note that every law has two expressions, (a) and (b). This is known as duality. These are obtained by changing every AND(.) to OR(+), every OR(+) to AND(.) and all 1's to 0's and vice-versa. It has become conventional to drop the . (AND symbol) i.e. A.B is written as AB. T1 : Commutative Law (a) A + B = B + A (b) A B = B A T2 : Associate Law (a) (A + B) + C = A + (B + C) (b) (A B) C = A (B C) T3 : Distributive Law (a) A (B + C) = A B + A C (b) A + (B C) = (A + B) (A + C) T4 : Identity Law (a) A + A = A (b) A A = A T5 : (a) (b) T6 : Redundance Law (a) A + A B = A (b) A (A + B) = A T7 : (a) 0 + A = A (b) 0 A = 0 T8 : (a) 1 + A = 1 (b) 1 A = A T9 : (a) (b) T10 : (a) (b) T11 : De Morgan's Theorem (a) (b) Prove T10 : (a) (1) Algebraically: (2) Using the truth table: Logic Gates: logic gate (AND, OR, XOR, NOT, NAND, NOR and XNOR) A logic gate is a building block of a digital circuit. Most logic gates have two inputs and one output and are based on Boolean algebra. At any given moment, every terminal is in one of the two binary conditions false (high) or true (low). False represents 0, and true represents 1. Depending on the type of logic gate being used and the combination of inputs, the binary output will differ. A logic gate can be thought of like a light switch, wherein one position the output is off—0, and in another, it is on—1. Logic gates are commonly used in integrated circuits (IC). Basic logic gates There are seven basic logic gates: AND, OR, NOT, NAND, NOR, EXOR and EXNOR gates. AND gate The AND gate is an electronic circuit that gives a high output (1) only if all its inputs are high. A dot (.) is used to show the AND operation i.e. A.B. OR gate The OR gate is an electronic circuit that gives a high output (1) if one or more of its inputs are high. A plus (+) is used to show the OR operation. NOT gate The NOT gate is an electronic circuit that produces an inverted version of the input at its output. It is also known as an inverter. If the input variable is A, the inverted output is known as NOT A. This is also shown as A', or A with a bar over the top, as shown at the outputs. NAND gate This is a NOT-AND gate which is equal to an AND gate followed by a NOT gate. The outputs of all NAND gates are high if any of the inputs are low. The symbol is an AND gate with a small circle on the output. The small circle represents inversion. NOR gate This is a NOT-OR gate which is equal to an OR gate followed by a NOT gate. The outputs of all NOR gates are low if any of the inputs are high. EXOR gate The 'Exclusive-OR' gate is a circuit which will give a high output if either, but not both, of its two inputs are high. An encircled plus sign ( ) is used to show the EOR operation. Applications of EXOR gate There are many applications for XOR gate such as: 1. Arithmetic Operations: The XOR gate also called (Medulo Two Adder) , since it is used t give the sum of two binary numbers, it has been used in many arithmetic circuits (it will be explained in latter experiments). 2. Parity Checker: One of the advantages of using digital system, is it's capability of detecting and correction errors. This is used specially when digital information is transmitted or stored. One of the simplest form of error detecting is the parity checker, assume that, we have four bit word, to detect the occurrence of an odd number of errors in this word, a single bit will be added to the word that makes the number of "ones" in the word either even number "Even Parity" or odd number "Odd Parity", so, if an odd number of error occurred in the word then the total number of ones will not remain the same, it will change from odd to even or from even to odd. 3. Controlled Inverter: If one of the input of XOR gate is used as control signal, say B, it will give it's output either as Y=A or Y=A′ depending on control B. How, let's see. If B=0, Y=A′B+AB′==A′0+A1=AB=0,Y=A′B+AB′==A′0+A1=A If B=1,Y=A′B+AB′==A′1+A0=A′B=1,Y=A′B+AB′==A′1+A0=A′ It means if control input B=0 , output Y=A means output just follows input whereas when control input B=1, output Y=A′ means output invert it's input. Hence XOR gate is called as controlled inverter. 4. Binary to Gray / Gray to Binary Conversion: The gray code is widely used in many digital systems, specially in shaft register encoders and analog to digital conversion, but it is difficult to use the gray-code in arithmetic operations, since there are only one bit change between two consecutive gray code number, and it is unweighted code, and the XOR gate is the most suitable gate for this purpose. 5. Combinational Logic Circuit Minimization: Another useful application for XOR gate is, it's use in minimizing combinational circuit which will be dealt with in detail in other experiment. 6. Digital Comparator: Many practical applications require the comparator of two numbers A & B searching for either (a) quality or (b) non quality. EXNOR gate The 'Exclusive-NOR' gate circuit does the opposite to the EOR gate. It will give a low output if either, but not both, of its two inputs are high. The symbol is an EXOR gate with a small circle on the output. The small circle represents inversion. Figure 1: Logic gate symbols Table 1: Logic gates representation using the Truth table Using the AND and NOT Set Using just the AND and NOT set of logic gates we can create the following Boolean functions and equivalent gates. AND/NOT Set Equivalents Using the OR and NOT Set Using the OR and NOT set of logic gates we can create the following Boolean functions and equivalent gates. OR/NOT Set Equivalents Using the Full AND, OR and NOT Set Using the full AND, OR and NOT set of logic gates we can create the Boolean expressions for the Exclusive-OR (Ex-OR) and the NOT Exclusive-OR (Ex-NOR) gates as shown. Full AND/OR/NOT Set to Implement Ex-OR Full AND/OR/NOT Set to Implement Ex-NOR Note that neither the Exclusive-OR gate or the Exclusive-NOR gate can be classed as a universal logic gate as they can not be used on their own or together to produce any other Boolean function. Universal Gates: A universal gate is a gate which can implement any Boolean function without need to use any other gate type. The NAND and NOR gates are universal gates. Logic Gates using only NAND Gates Thus ALL other logic gate functions can be created using only NAND gates making it a universal logic gate. Logic Gates using only NOR Gates Thus ALL other logic gate functions can be created using only NOR gates making it also a universal logic gate. Note also that the implementation of the Exclusive-OR gate is more efficient using NAND gates compared to using NOR gates, while the implementation of the Exclusive-NOR gate is more efficient with NOR gates compared to using NAND gates as in each case only four individual logic gates are required. BOOLEAN FUNCTION A Boolean Function is described by an algebraic expression called Boolean expression which consists of binary variables, the constants 0 and 1, and the logic operation symbols.
Recommended publications
  • Allgemeines Abkürzungsverzeichnis
    Allgemeines Abkürzungsverzeichnis L.
    [Show full text]
  • Famílias De Circuitos Lógicos
    FAMÍLIAS DE CIRCUITOS LÓGICOS Famílias lógicas consistem de um conjunto de circuitos integrados implementados para cobrir um determinado grupo de funções lógicas que possuem características de fabricação e elétricas similares. O desenvolvimento das famílias lógicas é uma conseqüência da evolução das técnicas de fabricação e necessidades de aplicação (velocidade, potência, etc.). CLASSIFICAÇÃO PELO ELEMENTO CHAVEADOR: • Transistor Bipolar • Transistor MOS Tecnologias-Demantova 1 Transistor Bipolar: Tecnologias-Demantova 2 Transistor MOS: Tecnologias-Demantova 3 SUB FAMÍLIAS: • BIPOLAR: -DTL (Diode Transistor Logic, Lógica de Diodos e Transistores); -DCTL (Direct Coupled Transistor Logic, Lógica de Transistores diretamente acoplados); -RTL (Resistor Transistor Logic, Lógica de Transistores e Resistores); -RCTL (Resistor Capacitor Transistor Logic, RTL com Capacitores); -HTL (High Threshold Logic, Lógica de alto Limiar); -TTL (Transistor Transistor Logic, Lógica Transistor-transistor); -ECL (Emitter Coupled Logic, Lógica de Emissores Acoplados);. • MOS (Metal Oxide Semiconductor Logic, Lógica de MOSFETs): -pMOS (MOSFET canal P); -nMOS (MOSFET canal N); -CMOS (Complementary MOS Logic, Lógica MOS complementar) Tecnologias-Demantova 4 SUB FAMÍLIAS: • BICMOS: -É uma terceira tecnologia que ganha campo hoje em dia mesclando os dois elementos chaveadores em um mesmo componente. Tecnologias-Demantova 5 Volume x Tempo x Custo: Tecnologias-Demantova 6 PARÂMETROS ELÉTRICOS E NÍVEIS LÓGICOS: • IIH: corrente de entrada para nível alto; • IIL: corrente de entrada para nível baixo; • ioh: corrente de saída para nível alto; • IOL: corrente de saída para nível baixo; • VIH: tensão de entrada para nível alto; • VIL: tensão de entrada para nível baixo; • VOH: tensão de saída para nível alto; • VOL: tensão de saída para nível baixo; • TPD: tempo de propagação de uma transição da SAÍDA EM relação a entrada (TPHL, TPLH).
    [Show full text]
  • EE 372 Digital Logic Families
    EE 372 Digital Logic Families Deborah Won Department of Electrical and Computer Engineering California State University, Los Angeles Winter 2015 Outline Digital Logic Definition Digital IC Design Issues Bipolar Transistor Logic Families CMOS circuits e.g., the AND operation A B Y = A · B 0 0 0 0 1 0 1 0 0 1 1 1 Digital Logic Digital logic = Binary arithmetic performed by transistor circuits. The output represents whether a particular condition, or input state, is TRUE or FALSE. Digital Logic Digital logic = Binary arithmetic performed by transistor circuits. The output represents whether a particular condition, or input state, is TRUE or FALSE. e.g., the AND operation A B Y = A · B 0 0 0 0 1 0 1 0 0 1 1 1 ! acts like a transistor control voltage. Remember: We can get a transistor to act like an ON/OFF switch by forcing the transistor to operate either in its 1. saturation region 2. cutoff region Logic Gate These inputs A and B are actually the input voltage applied to the base of a transistor (or gate for MOS transistor) 2. cutoff region Logic Gate These inputs A and B are actually the input voltage applied to the base of a transistor (or gate for MOS transistor) ! acts like a transistor control voltage. Remember: We can get a transistor to act like an ON/OFF switch by forcing the transistor to operate either in its 1. saturation region Logic Gate These inputs A and B are actually the input voltage applied to the base of a transistor (or gate for MOS transistor) ! acts like a transistor control voltage.
    [Show full text]
  • PENDAHULUAN.Pdf (665Kb)
    PENDAHULUAN PENGANTARMUKAAN PERIPHERAL KOMPUTER ADALAH PENGHUBUNG ANTAR KOMPUTER BAIK DENGAN KOMPUTER ATAU DENGAN PERANGKAT LAIN. INTERFACE KOMPUTER ATAU LEBIH DI KENAL INTERFACING. INTERFACING TIDAK LAIN ADALAH SEPERANGKAT YANG DIIMPLEMENTASIKAN DARI RANGKAIAN ELEKTRONIKA. 3/21/2016 UNIVERSITAS GUNADARMA - DIA RAGASARI, S.KOM 1 3/21/2016 UNIVERSITAS GUNADARMA - DIA RAGASARI, S.KOM 2 3/21/2016 UNIVERSITAS GUNADARMA - DIA RAGASARI, S.KOM 3 1.1 INTERFACING LAYER Pada dasarnya sistem mikroprosesor, tidak terlepas dari sebuah interfacing yang merupakan bagian dari rangkaian elektronika. Secara hirarki struktur interfacing terdapat beberapa layer, diantarnya a. electrical (physical) : Fungsi dari layer electrical merupakan layer yang mendasar dari suatu interfacing. Layer ini adalah layar fisik, karena intrefacing dalam penggunaan umum berkaitan dengan setiap alat yang penggunaannya adalah elektronika. b. Signal : Layer signal merupakan layer yang digunakan untuk menyampaikan dari dari satu titik ke titik yang lainnya. Layer signal adalah teknik pengembangan pada elektrical interfacing, bus interfacing, dan data transfer. c. Logic : Layer logic adalah pengalamatan dari rangkaian aplikasi, bus interfacinf, dan data transfer. layer logic merupakan suatu bentuk argumentasi tanpa memandang arti khusus dari istilah argumentasi lain. d. Protocol : Merupakan satu set peraturan dan prosedur untuk bertukar-tukar data. Protocol interfacing adalah ilmu yang merupakan standar dan implementasi dari suatu komunikasi. e. Code : Layer code merupakan representasi
    [Show full text]
  • Logic Families
    Logic Families PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Mon, 11 Aug 2014 22:42:35 UTC Contents Articles Logic family 1 Resistor–transistor logic 7 Diode–transistor logic 10 Emitter-coupled logic 11 Gunning transceiver logic 16 Transistor–transistor logic 16 PMOS logic 23 NMOS logic 24 CMOS 25 BiCMOS 33 Integrated injection logic 34 7400 series 35 List of 7400 series integrated circuits 41 4000 series 62 List of 4000 series integrated circuits 69 References Article Sources and Contributors 75 Image Sources, Licenses and Contributors 76 Article Licenses License 77 Logic family 1 Logic family In computer engineering, a logic family may refer to one of two related concepts. A logic family of monolithic digital integrated circuit devices is a group of electronic logic gates constructed using one of several different designs, usually with compatible logic levels and power supply characteristics within a family. Many logic families were produced as individual components, each containing one or a few related basic logical functions, which could be used as "building-blocks" to create systems or as so-called "glue" to interconnect more complex integrated circuits. A "logic family" may also refer to a set of techniques used to implement logic within VLSI integrated circuits such as central processors, memories, or other complex functions. Some such logic families use static techniques to minimize design complexity. Other such logic families, such as domino logic, use clocked dynamic techniques to minimize size, power consumption, and delay. Before the widespread use of integrated circuits, various solid-state and vacuum-tube logic systems were used but these were never as standardized and interoperable as the integrated-circuit devices.
    [Show full text]
  • Design and Implementation of Novel High Performance Domino Logic
    DESIGN AND IMPLEMENTATION OF NOVEL HIGH PERFORMANCE DOMINO LOGIC A thesis submitted in partial fulfillment of the requirements for the award of the degree of Doctor of Philosophy in VLSI Design and Embedded Systems by SRINIVASA V S SARMA D Roll No: 510EC102 Under the Guidance of Prof. KAMALAKANTA MAHAPATRA Electronics and Communication Engineering Department National Institute of Technology Rourkela-769008 Odisha 2015 DESIGN AND IMPLEMENTATION OF NOVEL HIGH PERFORMANCE DOMINO LOGIC A thesis submitted in partial fulfillment of the requirements for the award of the degree of Doctor of Philosophy in VLSI Design and Embedded Systems by SRINIVASA V S SARMA D Roll No: 510EC102 Under the Guidance of Prof. KAMALAKANTA MAHAPATRA Electronics and Communication Engineering Department National Institute of Technology Rourkela-769008 Odisha 2015 CERTIFICATE This is to certify that the thesis report entitled “DESIGN AND IMPLEMENTATION OF NOVEL HIGH PERFORMANCE DOMINO LOGIC” submitted by Srinivasa V S Sarma D, Roll No: 510EC102, in partial fulfillment of the requirements for the award of the degree of Doctor of Philosophy with specialization in “VLSI Design and Embedded Systems” in Electronics and Communication Engineering at the National Institute of Technology, Rourkela is an authentic work under my supervision and guidance. To the best of my knowledge, the matter embodied in the thesis has not been submitted to any other University / Institute for the award of any Degree or Diploma. Place: NIT ROURKELA Date: Prof. K. K. Mahapatra Electronics & Communication Engineering Department, National Institute of Technology, Rourkela - 769008. Dedicated to My parents ACKNOWLEDGEMENTS This project is by far the most significant accomplishment in my life and it would be impossible without people (especially my family) who supported me and believed in me.
    [Show full text]
  • Logic Family
    LOGIC FAMILY LOGIC FAMILY In computer engineering, a logic family may refer to one of two related concepts. A logic family of monolithic digital integrated circuit devices is a group of electronic logic gates constructed using one of several different designs, usually with compatible logic levels and power supply characteristics within a family. Many logic families were produced as individual components, each containing one or a few related basic logical functions, which could be used as "building-blocks" to create systems or as so-called "glue" to interconnect more complex integrated circuits. A "logic family" may also refer to a set of techniques used to implement logic within VLSI integrated circuits such as central processors, memories, or other complex functions. Some such logic families use static techniques to minimize design complexity. Other such logic families, such as domino logic, use clocked dynamic techniques to minimize size, power consumption and delay. Before the widespread use of integrated circuits, various solid-state and vacuum-tube logic systems were used but these were never as standardized and interoperable as the integrated-circuit devices. Technologies The list of packaged building-block logic families can be divided into categories, listed here in roughly chronological order of introduction, along with their usual abbreviations: Resistor–transistor logic(RTL) o Direct-coupled transistor logic(DCTL) o Resistor–capacitor–transistor logic (RCTL) Diode–transistor logic(DTL) o Complemented transistor diode logic
    [Show full text]
  • Chapter -1 Logic Families
    CHAPTER -1 LOGIC FAMILIES 1.) Logic families classification a.) TTL…Transistor-transistor logic (TTL) is a digital logic design in which bipolar transistor s act on direct-current pulses. Many TTL logic gate s are typically fabricated onto a singleintegrated circuit (IC). TTL ICs usually have four-digit numbers beginning with 74 or 54. A TTL device employs transistor s with multiple emitters in gates having more than one input. TTL is characterized by high switching speed (in some cases upwards of 125 MHz ), and relative immunity to noise . Its principle drawback is the fact that circuits using TTL draw more current than equivalent circuits using metal oxide semiconductor ( MOS ) logic. Low-current TTL devices are available, but the reduced current demand comes at the expense of some operating speed. b.) ECL…In electronics, emitter-coupled logic (ECL) is a high-speed integrated circuit bipolar transistor logic family.ECL uses an overdriven BJT differential amplifier with single-ended input and limited emitter current to avoid the saturated (fully on) region of operation and its slow turn-off behavior c.) CMOS…The term CMOS stands for “Complementary Metal Oxide Semiconductor”. CMOS technology is one of the most popular technology in the computer chip design industry and broadly used today to form integrated circuits in numerous and varied applications. Today’s computer memories, CPUs and cell phones make use of this technology due to several key advantages. This technology makes use of both P channel and N channel semiconductor devices. The main advantage of CMOS over NMOS and BIPOLAR technology is the much smaller power dissipation.
    [Show full text]
  • Digital IC Logic Families Presented by K.Pandiaraj Assistant Professor ECE Department Kalasalingam University Introduction
    Digital IC Logic Families Presented by K.Pandiaraj Assistant Professor ECE Department Kalasalingam University Introduction • Basically, there are two types of semiconductor devices: bipolar and unipolar. • Based on these devices, digital integrated circuits have been made which are commercially available. • Various digital functions are being fabricated in a variety of forms using bipolar and unipolar technologies. • A group of compatible ICs with the same logic levels and supply voltages for performing various logic functions have been fabricated using a specific circuit configuration which is referred to as a logic family. • Logic Families are classified into two types: • Bipolar logic family • Unipolar Logic Family Bipolar Logic Families • The main elements of a bipolar IC are resistors, diodes (which are also capacitors) and transistors. Basically, there are two types of operations in bipolar ICs: 1. Saturated, and 2. Non-saturated. • In saturated logic, the transistors in the IC are driven to saturation, whereas in the case of non- saturated logic, the transistors are not driven into saturation. • The saturated bipolar logic families are: 1. Resistor–transistor logic (RTL), 2. Direct–coupled transistor logic (DCTL), 3. Integrated–injection logic (I 2L) 4. Diode–transistor logic (DTL), 5. High–threshold logic (HTL), and 6. Transistor-transistor logic (TTL). • The non-saturated bipolar logic families are: 1. Schottky TTL, and 2. Emitter-coupled logic (ECL). Unipolar Logic Families • MOS devices are unipolar devices and only MOSFETs are employed in MOS logic circuits. • The MOS logic families are: • 1. PMOS, • 2. NMOS, and • 3. CMOS • While in PMOS only p-channel MOSFETs are used and in NMOS only n-channel MOSFETs are used, in complementary MOS (CMOS), both p- and n-channel MOSFETs are employed and are fabricated on the same silicon chip.
    [Show full text]
  • G. K. KHARATE Principal Matoshri College of Engineering and Research Centre Nashik
    G. K. KHARATE Principal Matoshri College of Engineering and Research Centre Nashik © Oxford University Press. All rights reserved. CONTENTS Preface v Chapter 1: LOGIC FAMILIES 1 1.1 Introduction 1 1.2 Logic Families 2 1.3 Transistor as Switch 3 1.4 Characteristics of Digital ICs 4 1.5 Resistor-Transistor Logic (RTL) 8 1.6 Direct Coupled Transistor Logic (DCTL) 9 1.7 Diode-Transistor Logic (DTL) 11 1.8 Modified Diode-Transistor Logic 12 1.9 Transistor-Transistor Logic (TTL) 13 1.10 TTL Parameters 23 1.11 Commonly Used ICs of Standard TTL 26 1.12 Improved TTL Series 27 1.13 Comparison of TTL Families 29 1.14 Emitter Coupled Logic 29 1.15 Integrated Injection Logic (I2L) 32 1.16 MOSFET Logic 34 1.17 NMOS 34 1.18 CMOS 37 1.19 Comparison of CMOS and TTL Families 43 1.20 Interfacing CMOS and TTL Devices 43 1.21 Interfacing ECL and TTL Devices 45 Chapter 2: NUMBER SYSTEM AND CODES 51 2.1 Introduction 51 2.2 Number Systems 51 2.3 Interconversion of Numbers 53 2.4 Signed Binary Number 68 2.5 Floating Point Representation of Number 76 2.6 Binary Arithmetic 77 2.7 Complement Binary Arithmetic 81 © Oxford University Press. All rights reserved. x Contents 2.8 Arithmetic Overflow 91 2.9 Codes 92 Chapter 3: BOOLEAN ALGEBRA AND LOGIC GATES 129 3.1 Introduction 129 3.2 Boolean Algebra 129 3.3 Overview of Logic Circuit 137 3.4 DeMorgan’s Theorems 140 3.5 Standard Representation for Logical Functions 141 3.6 Minterm and Maxterm 142 3.7 Simplification of Boolean Expression 145 3.8 Simplification of Sum of Products 156 3.9 Simplification of Product of Sums
    [Show full text]
  • Digital Logic Families
    Digital logic families Digital logic has evolved over the years and this process has led to the development of a variety of families of digital logic integrated circuits. Each family has its own advantages and limitations. This document describes the main logic families and their characteristics. Among the technologies discussed here are DL, RTL, DTL, ECL, TTL, CMOS and BiCMOS. All of these technologies were developed in the 1950s/1960s and evolved over time. Some of these are still in use today. Diode Logic (DL) Diode Logic (DL) is the most primitive of all the digital logic families. It is extremely simple and inexpensive because it only uses passive components. In fact, it combines diodes and resistors so sometimes it is known as Diode-Resistor Logic (DRL). Since DL does not use active components such as transistors, it does not provide amplification and therefore inversion is not available. For this reason, DL only provides AND and OR functions. Lack of amplification leads to signal degradation. This is due to the fact there is a voltage drop across diodes and to the fact that when diodes conduct, a voltage divider develops with the inputs. DL is an obsolete family, primarily due to its limitations in terms of inversion and degradation. 1 www.ice77.net OFFTIME = 100nS VA D1 ONTIME = 100nS CLK 1 2 DELAY = 0 STARTVAL = 1 V 1N4376 V OPPVAL = 0 OFFTIME = 200nS VB D2 ONTIME = 200nS CLK 1 2 DELAY = 0 STARTVAL = 1 V 1N4376 OPPVAL = 0 R1 1k 0 DL implementation of the OR function 5.0V 2.5V 0V V(VA:1) V(VB:1) 5.0V (250.000n,4.2321) 2.5V SEL>> 0V 0s 50ns 100ns 150ns 200ns 250ns 300ns 350ns 400ns V(D2:K) Time Waveforms for the OR function The circuit performs the correct logic but the voltage drop across the diode produces a considerably lower high output voltage (4.2321V).
    [Show full text]
  • The Ultimate Computer Acronyms Archive
    The Ultimate Computer Acronyms Archive www.acronyms.ch Last updated: May 29, 2000 «I'm sitting in a coffee shop in Milford, NH. In the booth next to me are two men, a father and a son. Over coffee, the father is asking his son about modems, and the son is holding forth pretty well on the subject of fax compatibility, UART requirements, and so on. But he's little out of date: The father asks, "So should I get one with a DSP?" "A what?" says the son. You just can't get far if you're not up on the lingo. You might squeak by in your company of technological nonexperts, but even some of them will surprise you. These days, technical acronyms quickly insinuate themselves into the vernacular.» Raphael Needleman THIS DOCUMENT IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. The information contained in this document represents the current view of the authors on this subject as of the date of publication. Because this kind of information changes very quickly, it should not be interpreted to be a commitment on the part of the authors and the authors cannot guarantee the accuracy of any information presented herein. INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND FREEDOM FROM INFRINGEMENT. The user assumes the entire risk as to the accuracy and the use of this document. This document may be copied and distributed subject to the following conditions: 1.
    [Show full text]