13 Combinational Logic Devices

Size: px
Start display at page:

Download "13 Combinational Logic Devices"

Transcription

1 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik ombinational ogic evices Purpose of combinational logic design: uilding larger, more sophisticated logic circuits by using adaptable and versatile blocks which are commercially available. In order to reduce the number of packages it is necesasary to avoid using discrete gates. More frequently the designer will apply programmable Is which can enlarge the integration of several building blocks into one larger package. ence handling errors with interfacing and soldering can be avoided. uilding blocks perform a variety of tasks: ogical and arithmetical data manipulation (comparators, adders) ata selection from various sources (multiplexers, priority encoders) evice selection and data distribution to various destinations (decoders, demultiplexers) ode conversion, parity generation (code converters) Error detection (parity detectors) pplied technology: VSI (very large scale integrated) circuits with up to millions of gates (N, OR, NN, NOR). igital ircuits I -

2 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik. Multiplexer (ata Selector/Switch) Multiplexers perform the function of selecting one of many data input lines for transmission to some destination. It requires n data select lines to control n data input lines. Thus a MU is a n input / output device. Single 8-ine to -ine ual -ine to -ine Quadruple -ine to -ine igital ircuits I -

3 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik Example: - to -Multiplexer Truth table with entered signal representation E S S Y I I I I S S I E I E S I E I E S ogic function: Y = ( S S I E) ( S S I E) (S S I E) ( S S I E) = (m I E) (m I E) (m I E) (m I E) igital ircuits I -

4 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik igital ircuits I -. ecoders (evice Selector) decoder is an n-input / n -output combinational device that activates one of the n outputs for each unique binary input pattern of m bits. Each output is identified by the minterm code m i of the binary input pattern it represents: decoder therefore is called a minterm code generator. ommercial decoders feature active low outputs and active low enable inputs. Function table: Enable Inputs Outputs G G G I I I Y Y Y Y Y Y Y Y Y i = S m i E i = n -

5 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik to 8-bit decoder V code entity E_8 is port( I : in bit_vector( downto ); -- data input G, G_N, G_N : in bit; -- enable signals Y_N : out bit_vector( downto )); -- output lines end E_8; architecture E_8 of E_8 is signal EN: bit; -- local enable EN <= G and not G_N and not G_N; process(i, EN) variable TEMP: bit_vector( downto ); -- local test variable Y_N <= (others => ''); -- default assignment; aggregate TEMP := EN & I ; -- concatenation: vector & bit case TEMP is when "" => Y_N() <= ''; when "" => Y_N() <= '';... when "" => Y_N() <= ''; when others => null; -- no assignment end case; end process; end E_8; igital ircuits I -

6 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik igital ircuits I -. emultiplexer emultiplexers are used as a controlled switch which assigns an input line to one out of n output lines. -to-8 decoder x8 can be used as a -to-8 demultiplexer (MU). The single data input I is connected to one of the active low enable inputs. The active low outputs and active low enable are of particular importance when a decoder is used as a MU because it is often paired with a MU for data routing. MU/MU system offers a time-shared bussing of multiple-line data Ii on a single line. ussing data over large distances by using this system results in savings on hardware, but is a relatively slow process. Inputs Outputs I Y Y Y Y Y Y Y Y

7 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik igital ircuits I -. Encoder Encoders perform the inverse function of decoders. n encoder must generate a different output bit pattern for each input line that becomes active. If more than one input line is active the ouput depends on the priority of the input line. They convert n inputs to an n-bit code, where the n-bit code represents the highest priority input that is active (priority encoders). In addition, a commercial PE will usually have an enable-input and an enable-output ( EI, EO) that are used to cascade PEs. group signal output GS indicates a legitimate encoding condition. ata Inputs Outputs EI GS EO

8 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik 8 to bit Priority encoder: V coding with if-then-else entity PEN_8 is port( _N : in bit_vector( downto ); -- priority inputs EI_N : in bit; -- enable low active _N : out bit_vector( downto ); -- binary output EO, GS_N: out bit); -- cascading outputs end PEN_8; architecture PEN8_ of PEN_8 is process(_n, EI_N) _N <= ""; GS_N <= ''; EO <= ''; -- default assignments if EI_N = '' then GS_N <= ''; if _N() = '' then _N <= ""; -- inverted elsif _N() = '' then _N <= ""; elsif _N() = '' then _N <= "";... elsif _N() = '' then _N <= "";"; -- inverted else _N <= ""; GS_N <= ''; EO <= ''; ";-- no _N input active end if; end if; end process; end PEN8_; igital ircuits I -8

9 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik. ode onverters Frequently it is necessary to convert one code to another. code converter is a device that associates to each agreed pattern of n-inputs a corresponding m-output combination. n example to illustrate the code converter design process is given with the Gray-to-binary conversion for -bit codes. In order to apply K-maps for minimising the logic, the correct minterm code of all input patterns has to be considered. No. m i G G G G G G G G G G G G G G G G G G G G G G G G igital ircuits I -9

10 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik -to-seven-segment display (I) ight-emitting diodes (Es) and liquid crystal displays (s) are used to produce the arabic numerals. For each decimal digit several segments (S...S) have to be controlled. The truth table describes a -input/-output code converter. The last six input patterns will not occur because we expect -inputs, therefore don t-care entries can be made to reduce the logic. If false data rejection (FR) is necessary the code converter should yield one single letter, i. e. E for all input patterns which do not belong to the code word set. ec S S S S S S S S S S S S S S igital ircuits I -

11 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik igital ircuits I - -to-seven-segment display (II)

12 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik -Segment code converter V description ab application with the S9-oard -- SEG.vhd -- Seven Segment ode onverter for S-9 emoboard S/P S/P S/P S/P --S/P9 S/P S/P entity SEG is port(input: in bit_vector( downto ); --Pins,,, SEGMENTS: out bit_vector( downto )); end SEG; igital ircuits I -

13 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik architecture ONVERTER of SEG is EOER: process( INPUT) case INPUT is --"S S S S S S S" when "" => SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; when ""=> SEGMENTS <= ""; -- when ""=> SEGMENTS <= "";-- -- when ""=> SEGMENTS <= "";-- b -- when ""=> SEGMENTS <= "";-- c -- when ""=> SEGMENTS <= "";-- d -- when ""=> SEGMENTS <= "";-- E -- when ""=> SEGMENTS <= "";-- F when others => SEGMENTS <= "";-- Error end case; end process EOER; end ONVERTER; igital ircuits I -

14 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik Survey of combinational components Type Input-/Output- ines Multiplexer ata: n fi Select: n ecoder Select: n fi n Enable: 晦 typically emultiplexer ata: fi n Select: n Priority Encoder Select: n fi n ommercial ircuits x: Single 8-ine to -ine MU x: ual -ine to -ine MU x: Quadruple -ine to -ine MU x8: Single -ine to 8-ine IN/OT x9: ual -ine to -ine /Y Types as above. single data input is connected to one enable line. x8: Single 8-ine to -ine PRI/IN Not available in advanced high-speed MOS technology (). ode onverter ata: k fi l x8: Single -ine to 8-ine IN/OT inary code to one out of eight code. pplication ata Selectors/Switches. One out of n input data lines is connected to the output. Switches multiple sources to a data bus or other devices. n-it binary input pattern activates one out of n output lines: Memory selection/enable in a microprocessor-system. n-it select lines perform a input data routing to n output lines. n active input line with the highest priority generates a corresponding binary output pattern. Prioritised peripheral interfaces request communication to a microprocessor system. ssignment of l output line to k input lines according to a problem specific coding. igital ircuits I -

15 Prof. r. J. Reichardt Prof. r.. Schwarz F Elektrotechnik/Informatik. 8-bit Magnitude omparator -- 8-bit comparator 8 entity KOMP8 is port(, : in bit_vector( downto ); T_N, EQ_N, GT_N : out bit); end KOMP8; architecture OMP8_ of KOMP8 is signal TEMP: bit_vector( downto ); -- local signal to avoid buffer mode process(, ) TEMP <= ""; -- default assignment if > then TEMP() <= ''; elsif = then TEMP() <= ''; end if; -- else is substituted by default end process; (EQ_N, GT_N) <= TEMP; -- aggregate as target T_N <= TEMP() nand TEMP(); -- concurrent end OMP8_; igital ircuits I -

ITM1010 Computer and Communication Technologies

ITM1010 Computer and Communication Technologies ITM omputer and ommunication Technologies Lecture #5 Part I: Introduction to omputer Technologies K-Map, ombination and Sequential Logic ircuits ITM 計算機與通訊技術 2 Product Product-Of Of-Sum onfiguration Sum

More information

Bits and Bit Patterns. Chapter 1: Data Storage (continued) Chapter 1: Data Storage

Bits and Bit Patterns. Chapter 1: Data Storage (continued) Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview by J. Glenn Brookshear Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns

More information

FSM Optimization. Outline. FSM State Minimization. Some Definitions. Methods 10/14/2015

FSM Optimization. Outline. FSM State Minimization. Some Definitions. Methods 10/14/2015 /4/25 C2: Digital Design http://jatinga.iitg.ernet.in/~asahu/cs22 FSM Optimization Outline FSM : State minimization Row Matching Method, Implication chart method, FSM Partitioning FSM Encoding: Random,

More information

PUF Design - User Interface

PUF Design - User Interface PUF Design - User Interface September 27, 2011 1 Introduction Design an efficient Physical Unclonable Functions (PUF): PUFs are low-cost security primitives required to protect intellectual properties

More information

Module 05. Digital Techniques

Module 05. Digital Techniques Module 05. Digital Techniques 01. Electronic Instrument Systems. Question Number. 1. What are the basic elements for 'Classic T' format?. Option A. Direction, altitude and height. Option B. Airspeed, pitch

More information

TDT4255 Lecture 7: Hazards and exceptions

TDT4255 Lecture 7: Hazards and exceptions TDT4255 Lecture 7: Hazards and exceptions Donn Morrison Department of Computer Science 2 Outline Section 4.7: Data hazards: forwarding and stalling Section 4.8: Control hazards Section 4.9: Exceptions

More information

Practice 10: Ratioed Logic

Practice 10: Ratioed Logic Practice 0: Ratioed Logic Digital Electronic Circuits Semester A 0 Ratioed vs. Non-Ratioed Standard CMOS is a non-ratioed logic family, because: The logic function will be correctly implemented regardless

More information

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 15 Adaptive Huffman Coding Part I Huffman code are optimal for a

More information

maxon motor maxon motor control EPOS Positioning Controller Getting Started Edition July 2007 Positioning Controller Documentation Getting Started

maxon motor maxon motor control EPOS Positioning Controller Getting Started Edition July 2007 Positioning Controller Documentation Getting Started control EPOS Positioning Controller Getting Started Edition July 2007 24/1 Positioning Controller Documentation Getting Started maxon document number 573049-08 EPOS Positioning Controller EPOS 24/1 Getting

More information

Chapter 1: Data Storage

Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Presentation files modified by Farn Wang Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

More information

It is used when neither the TX nor RX knows anything about the statistics of the source sequence at the start of the transmission

It is used when neither the TX nor RX knows anything about the statistics of the source sequence at the start of the transmission It is used when neither the TX nor RX knows anything about the statistics of the source sequence at the start of the transmission -The code can be described in terms of a binary tree -0 corresponds to

More information

Chapter 7. Registers & Register Transfers. J.J. Shann. J. J. Shann

Chapter 7. Registers & Register Transfers. J.J. Shann. J. J. Shann Chapter 7 Registers & Register Transfers J. J. Shann J.J. Shann Chapter Overview 7-1 Registers and Load Enable 7-2 Register Transfers 7-3 Register Transfer Operations 7-4 A Note for VHDL and Verilog Users

More information

Color Pay : Next Paradigm for Instant Payment

Color Pay : Next Paradigm for Instant Payment Color Pay : Next Paradigm for Instant Payment Table of Contents Table of Contents 2 Abstract 2 What is PUF? 3 Overview of PUF 3 Architecture of PUF Chip 3 Internals of PUF Chip 4 External Interfaces of

More information

PROIECTAREA CEAS DIGITAL

PROIECTAREA CEAS DIGITAL Circuite Logice Programabile LABORATOR 9 10 PROIECTAREA CEAS DIGITAL SCOPUL LUCRĂRII În această lucrare se va proiecta ceas digital. Ceasul proiectat se va baza pe module proiectate anterior (divizor,

More information

Application-Based Performance and Power Analysis on Dynamically Reconfigurable Processor

Application-Based Performance and Power Analysis on Dynamically Reconfigurable Processor 223 8522 3-4- E-mail: drp@am.ics.keio.ac.jp NEC Dynamically Reconfigurable Processor (DRP) DRP, Abstract Application-Based Performance and Power Analysis on Dynamically Reconfigurable Processor Yohei HASEGAWA,

More information

HDMI. Smart Media. Comprehensive and competitive offer Only one RJ45 link needed Infrared bus via Smart Media network

HDMI.  Smart Media. Comprehensive and competitive offer Only one RJ45 link needed Infrared bus via Smart Media network mart Media DMI Comprehensive and competitive offer Only one J45 link needed frared bus via mart Media network D television has been on the steady rise since a number of years and its benefits are now well

More information

McKesson Radiology 12.0 Web Push

McKesson Radiology 12.0 Web Push McKesson Radiology 12.0 Web Push The scenario Your institution has radiologists who interpret studies using various personal computers (PCs) around and outside your enterprise. The PC might be in one of

More information

Lattice Coding and its Applications in Communications

Lattice Coding and its Applications in Communications Lattice Coding and its Applications in Communications Alister Burr University of York alister.burr@york.ac.uk Introduction to lattices Definition; Sphere packings; Basis vectors; Matrix description Codes

More information

B. Document source: Risk assessment by: Organization: Date: SIF specification issued by: Organization: Date:

B. Document source: Risk assessment by: Organization: Date: SIF specification issued by: Organization: Date: This form is one of the results of the research project SafeProd supported by VINNOVA (Swedish Agency for Innovation Systems). More information about the project could be found at. Page 1 A. Document issued

More information

Generating Multiple Correlated Probabilities for MUX-Based Stochastic Computing Architecture

Generating Multiple Correlated Probabilities for MUX-Based Stochastic Computing Architecture Generating Multiple orrelated Probabilities for -Based Stochastic omputing rchitecture Yili Ding,Yi Wu,and Weikang Qian University of Michigan-Shanghai Jiao Tong University Joint Institute Shanghai Jiao

More information

SS-10 ELECTRONIC INTERFACE INSTALLATION GUIDE

SS-10 ELECTRONIC INTERFACE INSTALLATION GUIDE SS-10 ELECTRONIC INTERFACE INSTALLATION GUIDE OVERVIEW The SS10 is designed to work with most vehicles that are equipped with non-mechanical transmission sensors (no speedometer cable). This interface

More information

Calcolatori Elettronici Anno Accademico 2001/2002. FSM in VHDL. Macchina a Stati Finiti (FSM) Tipo Moore. Esempio: Macchina di Moore a due stati

Calcolatori Elettronici Anno Accademico 2001/2002. FSM in VHDL. Macchina a Stati Finiti (FSM) Tipo Moore. Esempio: Macchina di Moore a due stati Macchina a Stati Finiti (FSM) Tipo Moore Calcolatori Elettronici Anno Accademico 2/22 FSM in VHDL Gianluca Palermo Politecnico di Milano Dipartimento di Elettronica e Informazione e-mail: gpalermo@fusberta.elet.polimi.it

More information

MH Corbin SS-10 Electronic Interface Installation Guide Version 2.0

MH Corbin SS-10 Electronic Interface Installation Guide Version 2.0 MH Corbin SS-10 Electronic Interface Installation Guide Version 2.0 OVERVIEW The SS-10 is designed to work with most vehicles that are equipped with nonmechanical transmission sensors (no speedometer cable).

More information

Taiwan Futures Exchange. Market Data Transmission Manual

Taiwan Futures Exchange. Market Data Transmission Manual Taiwan Futures Exchange Market Data Transmission Manual (Market Data Transmission Network) Prepared by TAIFEX Ver. 2.16S (updated on 2017/11/23) This spec is for the feed that symbol format is linked with

More information

Sequential Gates. Gate Level Design. Young Won Lim 3/15/16

Sequential Gates. Gate Level Design. Young Won Lim 3/15/16 equential Gates Gate Level esign Copyright (c) 2011-2016 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free ocumentation License, Version

More information

Lecture 20: Sequential Circuits. Sequencing

Lecture 20: Sequential Circuits. Sequencing Lecture 20: Sequential Circuits Sequencing Elements Simple /FF Timing efinitions Source: Ch 7 (W&H) Sequencing Use flip-flops to delay fast tokens so they move through exactly one stage each cycle. Inevitably

More information

MiCOM P443-6/P543-7/P841

MiCOM P443-6/P543-7/P841 MiCOM P443-6/P543-7/P841 Release Notes P443-6/P543-7/P841 Upgrade Platform Hardware Version: M, P Platform Software Version: 75, 65, 45 Publication Reference: P443-6/P543-7/P841-RNC1-TM-EN-1 ALSTOM 2013.

More information

1. NEW Sector Trading Application to emulate and improve upon Modern Portfolio Theory.

1. NEW Sector Trading Application to emulate and improve upon Modern Portfolio Theory. OmniFunds Release 5 April 22, 2016 About OmniFunds OmniFunds is an exciting work in progress that our users can participate in. We now have three canned examples our users can run, StrongETFs, Mean ETF

More information

FPGA PUF Based on Programmable LUT Delays

FPGA PUF Based on Programmable LUT Delays FPGA PUF Based on Programmable LUT Delays Bilal Habib Kris Gaj Jens-Peter Kaps Cryptographic Engineering Research Group (CERG) http://cryptography.gmu.edu Department of ECE, Volgenau School of Engineering,

More information

Arithmetic. Mathematics Help Sheet. The University of Sydney Business School

Arithmetic. Mathematics Help Sheet. The University of Sydney Business School Arithmetic Mathematics Help Sheet The University of Sydney Business School Common Arithmetic Symbols is not equal to is approximately equal to is identically equal to infinity, which is a non-finite number

More information

Lecture 8: Skew Tolerant Domino Clocking

Lecture 8: Skew Tolerant Domino Clocking Lecture 8: Skew Tolerant Domino Clocking Computer Systems Laboratory Stanford University horowitz@stanford.edu Copyright 2001 by Mark Horowitz (Original Slides from David Harris) 1 Introduction Domino

More information

M249 Diagnostic Quiz

M249 Diagnostic Quiz THE OPEN UNIVERSITY Faculty of Mathematics and Computing M249 Diagnostic Quiz Prepared by the Course Team [Press to begin] c 2005, 2006 The Open University Last Revision Date: May 19, 2006 Version 4.2

More information

Parade Technologies Reports Second Quarter 2017 Financial Results

Parade Technologies Reports Second Quarter 2017 Financial Results Parade Technologies Reports Second Quarter 2017 Financial Results Financial Highlights: Q217 consolidated revenue US$85.92 million, compared with US$68.78 million in the year-ago quarter Q217 consolidated

More information

Developing a Compliance Package for HR 5446

Developing a Compliance Package for HR 5446 Developing a Compliance Package for HR 5446 Written plans for each fair should include: Date and hours of operation Location List of Executive Committee/responsible parties Written provision of Emergency

More information

Variation Aware Placement for Efficient Key Generation using Physically Unclonable Functions in Reconfigurable Systems

Variation Aware Placement for Efficient Key Generation using Physically Unclonable Functions in Reconfigurable Systems University of Massachusetts Amherst ScholarWorks@UMass Amherst Masters Theses Dissertations and Theses 2016 Variation Aware Placement for Efficient Key Generation using Physically Unclonable Functions

More information

THERMOPILE DETECTORS FOR MEASUREMENT. TPD 1T 0224, TPD 1T 0524, TPD 1T 0624 General-Purpose Thermopile

THERMOPILE DETECTORS FOR MEASUREMENT. TPD 1T 0224, TPD 1T 0524, TPD 1T 0624 General-Purpose Thermopile THERMOPILE DETECTORS FOR MEASUREMENT THERMOPILE DETECTORS FOR MEASUREMENT TPD 1T 0224, TPD 1T 0524, TPD 1T 0624 General-Purpose Thermopile Applications This is our general-purpose range of thermopile detectors

More information

January 2018 PRICE SCHEDULE A 2.0 Advanced Replacement & Repair

January 2018 PRICE SCHEDULE A 2.0 Advanced Replacement & Repair Section A5 This Price Schedule is effective January 1, 2018. Date Page Comment 1-1-18 All January, 2018 Price Schedule update. 3-15-18 7 Updated 1881-010 decoder board for 1816 system. 3-19-18 13 Added

More information

Bitline PUF:! Building Native Challenge-Response PUF Capability into Any SRAM. Daniel E. Holcomb Kevin Fu University of Michigan

Bitline PUF:! Building Native Challenge-Response PUF Capability into Any SRAM. Daniel E. Holcomb Kevin Fu University of Michigan Sept 26, 24 Cryptographic Hardware and Embedded Systems Bitline PUF:! Building Native Challenge-Response PUF Capability into Any SRAM Daniel E. Holcomb Kevin Fu University of Michigan Acknowledgment: This

More information

FAST AND LS TTL. Package Information Including Surface Mount

FAST AND LS TTL. Package Information Including Surface Mount ST S TT ackage Information Including Surface ount 7 IO OI SU OUT WY SU OUT? Surface ount Technology is now being utilized to offer answers to many problems that have been created in the use of insertion

More information

Physical Unclonable Functions (PUFs) and Secure Processors. Srini Devadas Department of EECS and CSAIL Massachusetts Institute of Technology

Physical Unclonable Functions (PUFs) and Secure Processors. Srini Devadas Department of EECS and CSAIL Massachusetts Institute of Technology Physical Unclonable Functions (PUFs) and Secure Processors Srini Devadas Department of EECS and CSAIL Massachusetts Institute of Technology 1 Security Challenges How to securely authenticate devices at

More information

Cboe Summary Depth Feed Specification. Version 1.0.2

Cboe Summary Depth Feed Specification. Version 1.0.2 Specification Version 1.0.2 October 17, 2017 Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Cboe Summary Depth Server (TCP)... 4 1.3 Cboe Summary Depth Feed Server (UDP)... 5 1.4 Cboe Summary Depth

More information

Call for Proposals Practicalities: contractual and financial issues and application

Call for Proposals Practicalities: contractual and financial issues and application Call for Proposals 2007 Practicalities: contractual and financial issues and application National Information Day Ministry of Health Republic of Bulgaria Sofia, 28 March 2007 Who can submit? - Participating

More information

A PUF Design for Secure FPGA-Based Embedded Systems

A PUF Design for Secure FPGA-Based Embedded Systems A PUF Design for Secure FPGA-Based Embedded Systems author line author line2 author line3 Abstract The concept of having an integrated circuit (IC) generate its own unique digital signature has broad application

More information

Cypress Reports Second-Quarter 2013 Results

Cypress Reports Second-Quarter 2013 Results July 18, 2013 Cypress Reports Second-Quarter 2013 Results SAN JOSE, Calif.--(BUSINESS WIRE)-- Cypress Semiconductor Corp. (NASDAQ: CY) today announced its second-quarter 2013 results, which included the

More information

Benchmarks Open Questions and DOL Benchmarks

Benchmarks Open Questions and DOL Benchmarks Benchmarks Open Questions and DOL Benchmarks Iuliana Bacivarov ETH Zürich Outline Benchmarks what do we need? what is available? Provided benchmarks in a DOL format Open questions Map2Mpsoc, 29-30 June

More information

Standard Development Timeline

Standard Development Timeline PRC 012 2 Remedial Action Schemes Standard Development Timeline This section is maintained by the drafting team during the development of the standard and will be removed when the standard becomes effective.

More information

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: AGM 1232G SERIES DATE: APRIL 26, 2001 1.0 MECHANICAL SPECS 1. Iem Descripion 2. Overall Module Size 84.0mm(W)

More information

Systems Engineering. Engineering 101 By Virgilio Gonzalez

Systems Engineering. Engineering 101 By Virgilio Gonzalez Systems Engineering Engineering 101 By Virgilio Gonzalez Systems process What is a System? What is your definition? A system is a construct or collection of different elements that together produce results

More information

PHLX Clearing Trade Interface (CTI)

PHLX Clearing Trade Interface (CTI) PHLX Clearing Trade Interface (CTI) Specification Version 1.1 Table of Contents Table of Contents... 1 1. Overview... 2 2. Architecture... 3 2.1 Network protocol... 3 2.2 Connection... 3 2.3 Backup...

More information

Genium INET. ITCH Protocol Specification NFX. Version:

Genium INET. ITCH Protocol Specification NFX. Version: Genium INET ITCH Protocol Specification NFX Version:..235 Document ID: Documentation Release: Release Date: Publication Date: ITCH_ProtSpec_9 GENIUM_Product_a2000 206-0-7 206-0-7 All content in this document

More information

COMMISSION DELEGATED REGULATION (EU) /... of

COMMISSION DELEGATED REGULATION (EU) /... of EUROPEAN COMMISSION Brussels, 19.7.2016 C(2016) 4478 final COMMISSION DELEGATED REGULATION (EU) /... of 19.7.2016 supplementing Directive 2014/65/EU of the European Parliament and of the Council with regard

More information

CSE 417 Algorithms. Huffman Codes: An Optimal Data Compression Method

CSE 417 Algorithms. Huffman Codes: An Optimal Data Compression Method CSE 417 Algorithms Huffman Codes: An Optimal Data Compression Method 1 Compression Example 100k file, 6 letter alphabet: a 45% b 13% c 12% d 16% e 9% f 5% File Size: ASCII, 8 bits/char: 800kbits 2 3 >

More information

Frontier Telephone Companies TARIFF FCC NO. 4 Original Page 22-1 ACCESS SERVICE

Frontier Telephone Companies TARIFF FCC NO. 4 Original Page 22-1 ACCESS SERVICE Original Page 22-1 22. Advanced Communications Networks 22.1 TCP/IP Data Aggregation Service (A) Service Description TCP/IP Data Aggregation Service is available in two Modem-Based Dial Up Network Access

More information

Chapter 1: Data Storage

Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1: Data Storage 1.1 Bits and

More information

BCJR Algorithm. Veterbi Algorithm (revisted) Consider covolutional encoder with. And information sequences of length h = 5

BCJR Algorithm. Veterbi Algorithm (revisted) Consider covolutional encoder with. And information sequences of length h = 5 Chapter 2 BCJR Algorithm Ammar Abh-Hhdrohss Islamic University -Gaza ١ Veterbi Algorithm (revisted) Consider covolutional encoder with And information sequences of length h = 5 The trellis diagram has

More information

New Release 17/09/2018 SFC2014 FrontOffice

New Release 17/09/2018 SFC2014 FrontOffice New Release 17/09/2018 SFC2014 FrontOffice 2.16.1 NEW FUNCTIONALITIES:... 1 COLLECTION OF SCO DATA... 1 REPORTS... 1 CHANGES:... 1 OPERATIONAL PROGRAMME (IGJ,ETC,IPA-CB)... 1 OPERATIONAL PROGRAMME (IGJ)...

More information

January 2018 PRICE SCHEDULE A 2.0 Advanced Replacement & Repair

January 2018 PRICE SCHEDULE A 2.0 Advanced Replacement & Repair Section A5 This Price Schedule is effective January 1, 2018. Date Page Comment 1-1-18 All January, 2018 Price Schedule update. 3-15-18 7 Updated 1881-010 decoder board for 1816 system. 3-19-18 13 Added

More information

The customer shall provide to the Company the order information required in 5.2 following, and in addition the customer must also provide:

The customer shall provide to the Company the order information required in 5.2 following, and in addition the customer must also provide: GCI COMMUNICAION CORP. ARIFF F.C.C. NO. 3 1st Revised Page 70 Replaces Original Page 70 5. ACCESS ORDERING 5.1 General his section sets forth the regulations and order related charges for services set

More information

GDPR: The future of marketing and commercialisation of data. Alexander Brown & Matt Dyer, Simmons & Simmons

GDPR: The future of marketing and commercialisation of data. Alexander Brown & Matt Dyer, Simmons & Simmons GDPR: The future of marketing and commercialisation of data Alexander Brown & Matt Dyer, Simmons & Simmons 18 May 2017 Fair and lawful processing Consents and notices Fair and lawful processing Personal

More information

CS429: Computer Organization and Architecture

CS429: Computer Organization and Architecture CS429: Computer Organization and Architecture Warren Hunt, Jr. and Bill Young epartment of Computer Sciences University of Texas at Austin Last updated: November 5, 2014 at 11:25 CS429 Slideset 16: 1 Control

More information

I'LL SEE YOUR MISSLE AND RAISE YOU A MIRV: DEFCON 26

I'LL SEE YOUR MISSLE AND RAISE YOU A MIRV: DEFCON 26 I'LL SEE YOUR MISSLE AND RAISE YOU A MIRV: DEFCON 26 AGENDA 01 02 03 04 PRESENTERS STAGERS, CCDC, & HISTORY Exploit Payload Trampoline Dropper Malware(s) Meterpreter Empire Pupy 3rd party crimeware. As

More information

9. DIGIPATH Digital Service II (DDSII) 9.1 General

9. DIGIPATH Digital Service II (DDSII) 9.1 General Page 1 9.1 General Rates and charges for services explained herein are contained in Part M, Section 3. Service charges referred to herein are explained in Part A, Section 3 and contained in Part M, Section

More information

SN54F138, SN74F138 3-LINE TO 8-LINE DECODERS/DEMULTIPLEXERS

SN54F138, SN74F138 3-LINE TO 8-LINE DECODERS/DEMULTIPLEXERS SN54F138, SN74F138 3-LINE TO 8-LINE DECODERS/DEMULTIPLEXERS Designed Specifically for High-Speed Memory Decoders and Data Transmission Systems Incorporates Three Enable Inputs to Simplify Cascading and/or

More information

Telephone-Pa. P.U.C. No. 9 GTE North Incorporated Section 3 Sixth Revised Sheet 1 Canceling Fifth Revised Sheet 1 ORDERING OPTIONS FOR FIA

Telephone-Pa. P.U.C. No. 9 GTE North Incorporated Section 3 Sixth Revised Sheet 1 Canceling Fifth Revised Sheet 1 ORDERING OPTIONS FOR FIA Sixth Revised Sheet 1 Canceling Fifth Revised Sheet 1 3.1 General This section sets forth the regulations and order related charges for FIA Orders to provide the customer with FIA. These order charges

More information

Logic Selection Guide

Logic Selection Guide Logic Selection Guide June 000 Product Overview The availability of logic products is vast and dynamic. New family offerings are introduced almost every year, even as many manufacturers are reducing their

More information

Financial Accounting and Management Accounting: Overview

Financial Accounting and Management Accounting: Overview UNIT 4 Financial Accounting and Management Accounting: Overview Lesson 1 Explaining Financial Accounting (FI) 94 Lesson 2 Explaining Management Accounting (CO) 103 Lesson 3 Outlining the Integration Between

More information

Section A5. This Price Schedule is effective January 1, Advanced Replacement & Repair. Date Page Comment

Section A5. This Price Schedule is effective January 1, Advanced Replacement & Repair. Date Page Comment Section A5 This Price Schedule is effective January 1, 2018. Date Page Comment 1-1-18 All January, 2018 Price Schedule update. Prices and specifications subject to change without notice. Page 1 PRICE SCHEDULE

More information

Processor-Based Strong Physical Unclonable Functions with Aging-Based Response Tuning

Processor-Based Strong Physical Unclonable Functions with Aging-Based Response Tuning IEEE TRANSACTIONS ON EMERGING TOPICS IN COMPUTING, VOL. X, NO. X, DECEMBER 213 1 Processor-Based Strong Physical Unclonable Functions with Aging-Based Response Tuning Joonho Kong, Member, IEEE, and Farinaz

More information

TEPZZ 858Z 5A_T EP A1 (19) (11) EP A1 (12) EUROPEAN PATENT APPLICATION. (43) Date of publication: Bulletin 2015/15

TEPZZ 858Z 5A_T EP A1 (19) (11) EP A1 (12) EUROPEAN PATENT APPLICATION. (43) Date of publication: Bulletin 2015/15 (19) TEPZZ 88Z A_T (11) EP 2 88 02 A1 (12) EUROPEAN PATENT APPLICATION (43) Date of publication: 08.04. Bulletin / (1) Int Cl.: G06Q /00 (12.01) (21) Application number: 13638.6 (22) Date of filing: 01..13

More information

Alternate Models for Forecasting Hedge Fund Returns

Alternate Models for Forecasting Hedge Fund Returns University of Rhode Island DigitalCommons@URI Senior Honors Projects Honors Program at the University of Rhode Island 2011 Alternate Models for Forecasting Hedge Fund Returns Michael A. Holden Michael

More information

A Transferrable E-cash Payment System. Abstract

A Transferrable E-cash Payment System. Abstract Fuw-Yi Yang 1, Su-Hui Chiu 2 and Chih-Wei Hsu 3 Department of Computer Science and Information Engineering, Chaoyang University of Technology, Taiwan 1,3 Office of Accounting, Chaoyang University of Technology,

More information

Finite state machines (cont d)

Finite state machines (cont d) Finite state machines (cont d)! Another type of shift register " Linear-feedback shift register (LFSR)! Used to generate pseudo-random numbers! Some FSM examples Autumn 2014 CSE390C - VIII - Finite State

More information

Tests for Two Exponential Means

Tests for Two Exponential Means Chapter 435 Tests for Two Exponential Means Introduction This program module designs studies for testing hypotheses about the means of two exponential distributions. Such a test is used when you want to

More information

On a preliminary basis, the CNCIF considers that FIAs are directly concerned by these guidelines.

On a preliminary basis, the CNCIF considers that FIAs are directly concerned by these guidelines. Observations by the Chambre Nationale des Conseillers en Investissements Financiers (CNCIF) on JC/CP/2014/05, the Joint Committee Consultation Paper of the European Supervisory Authorities on guidelines

More information

Development of ATO System for Korea Standardized EMU

Development of ATO System for Korea Standardized EMU Development of ATO System for Korea Standardized EMU Tae-ki Ahn, Seong-ho Han, Su-gil Lee, Jong-duk Chung, Won-kyong Kim Urban Transit System Team Urban Transit Engineering Department Korea Railroad Research

More information

Frequently Asked Questions about your Upgraded Account.

Frequently Asked Questions about your Upgraded Account. Systems Change Guide Changes Begin 9.29.17 Frequently Asked Questions about your Upgraded Account. Review this guide to answer questions about our system upgrades, and information about your accounts.

More information

SmartNotes. How does the Thermo Scientific Qtegra ISDS Software assist me in routine operation in a GxP compliant laboratory? Qtegra ISDS Software

SmartNotes. How does the Thermo Scientific Qtegra ISDS Software assist me in routine operation in a GxP compliant laboratory? Qtegra ISDS Software Qtegra ISDS Software SmartNotes How does the Thermo Scientific Qtegra ISDS Software assist me in routine operation in a GxP compliant laboratory? I am performing routine, trace elemental analysis of samples

More information

Reconfigurable Acceleration for Monte Carlo based Financial Simulation

Reconfigurable Acceleration for Monte Carlo based Financial Simulation Reconfigurable Acceleration for Monte Carlo based Financial Simulation G.L. Zhang, P.H.W. Leong, C.H. Ho, K.H. Tsoi, C.C.C. Cheung*, D. Lee**, Ray C.C. Cheung*** and W. Luk*** The Chinese University of

More information

High-Speed Analog Semiconductor Solutions Addressing Bandwidth Bottlenecks

High-Speed Analog Semiconductor Solutions Addressing Bandwidth Bottlenecks High-Speed Analog Semiconductor Solutions Addressing Bandwidth Bottlenecks Transport and Carrier Networks Enterprise and Cloud Servers and Storage 2011 ANNUAL REPORT Enabling Cloud Computing with High-Speed

More information

P36 SERIES ROTARY DIP SWITCHES

P36 SERIES ROTARY DIP SWITCHES P36 SERIES ROTARY DIP SWITHES FEATURES Improved temperature withstanding. ompletely sealed for process compatibility. or 6 positions. Precision designed detent action. Ultra compact size through hole and

More information

NATIONAL PAYMENT AND SETTLEMENT SYSTEMS DIVISION

NATIONAL PAYMENT AND SETTLEMENT SYSTEMS DIVISION NATIONAL PAYMENT AND SETTLEMENT SYSTEMS DIVISION MINIMUM STANDARDS FOR ELECTRONIC PAYMENT SCHEMES ADOPTED SEPTEMBER 2010 Central Bank of Swaziland Minimum standards for electronic payment schemes Page

More information

BAT54 series 1. Product profile 2. Pinning information Schottky barrier diodes 1.1 General description 1.2 Features and benefits

BAT54 series 1. Product profile 2. Pinning information Schottky barrier diodes 1.1 General description 1.2 Features and benefits SOT2 Rev. 5 5 October 2012 1. Product profile 1.1 General description Planar with an integrated guard ring for stress protection, encapsulated in a small SOT2 (TO-26AB) Surface-Mounted Device (SMD) plastic

More information

NASDAQ OMX Futures - Top of Market. Version 4.00

NASDAQ OMX Futures - Top of Market. Version 4.00 NASDAQ OMX Futures - Top of Market Version 4.00 Version 4.00 Table of Contents 1. Overview... 3 2. Architecture... 4 3. Data Types... 4 4. Message Formats... 5 4.1. Timestamp Message... 5 4.2. System Event

More information

Indicator Fact Sheet Signals 2001 Chapter Tourism

Indicator Fact Sheet Signals 2001 Chapter Tourism Indicator Fact Sheet Signals 2001 Chapter Tourism YIR01TO07 Tourism expenditures of private households 1600 1400 Tourism expenditures (EURO) per capita Household consumption expenditures for recreation,

More information

A PUF Design for Secure FPGA-Based Embedded Systems

A PUF Design for Secure FPGA-Based Embedded Systems A PUF Design for Secure FPGA-Based Embedded Systems Jason H. Anderson Department of Electrical and Computer Engineering University of Toronto Toronto, Ontario, Canada e-mail: janders@eecg.toronto.edu Abstract

More information

Machine Learning and the Insurance Industry Prof. John D. Kelleher

Machine Learning and the Insurance Industry Prof. John D. Kelleher Machine Learning and the Insurance Industry Prof. John D. Kelleher ADAPT Centre, Dublin Institute of Technology john.d.kelleher@dit.ie The ADAPT Centre is funded under the SFI Research Centres Programme

More information

Tender. for. Supply & Installation of Lab Equipments. Indian Institute of Technology Jodhpur

Tender. for. Supply & Installation of Lab Equipments. Indian Institute of Technology Jodhpur Tender for Supply & Installation of Lab Equipments at Indian Institute of Technology Jodhpur NIT No. : IITJ/SPS/BISS/2/1(I)/2014-15/1 NIT Issue Date : 01 April 2014 Last Date of Submission : 22 April 2014

More information

TRANS-EUROPEAN NETWORKS GUIDELINES

TRANS-EUROPEAN NETWORKS GUIDELINES TRANS-EUROPEAN NETWORKS GUIDELINES The Treaty on the Functioning of the European Union (TFEU) retains the trans-european networks (TENs) in the areas of transport, energy and telecommunications, first

More information

Rates All rates are in dollars and cents per month, except as otherwise stated. A. Service Description Code Recurring*

Rates All rates are in dollars and cents per month, except as otherwise stated. A. Service Description Code Recurring* RCA No. 489 1st Revised 4000 Original 4000 GCI is currently providing service in the following area: Valdez The Copper Valley area rates apply to the following cities: Chitina, GlennAllen, McCarthy, Mentasta,

More information

Nordea Execution Policy

Nordea Execution Policy Nordea Execution Policy 1 January 2018 The President of Nordea Bank AB (publ) and Chief Executive Officer (CEO) in Group Executive Management has approved this execution policy ( Execution Policy ), which

More information

PROGRAMMING GUIDE FOR PPC6000 SERIES

PROGRAMMING GUIDE FOR PPC6000 SERIES NXPG-6001 APRIL 8, 2013 PROGRAMMING GUIDE FOR PPC6000 SERIES DESCRIPTION: This document supplies the commissioning engineer with sufficient information to make appropriate setup and changes to the commissioning

More information

Xantrex XW Power System Xantrex XW / Xantrex XW / Xantrex XW /240 60

Xantrex XW Power System Xantrex XW / Xantrex XW / Xantrex XW /240 60 Xantrex XW Power System Xantrex XW4024 120/240 60 Xantrex XW4548 120/240 60 Xantrex XW6048 120/240 60 Installation Guide www.schneider-electric.com Xantrex XW Power System Installation Guide www.schneider-electric.com

More information

IMPROVING THE QUALITY OF A PHYSICAL UNCLONABLE FUNCTION USING CONFIGURABLE RING OSCILLATORS Abhranil Maiti, Patrick Schaumont

IMPROVING THE QUALITY OF A PHYSICAL UNCLONABLE FUNCTION USING CONFIGURABLE RING OSCILLATORS Abhranil Maiti, Patrick Schaumont IMPROVING THE QUALITY OF A PHYSICAL UNCLONABLE FUNCTION USING CONFIGURABLE RING OSCILLATORS Abhranil Maiti, Patrick Schaumont Electrical and Computer Engineering Department Virginia Tech Blacksburg, VA

More information

Residuated Lattices of Size 12 extended version

Residuated Lattices of Size 12 extended version Residuated Lattices of Size 12 extended version Radim Belohlavek 1,2, Vilem Vychodil 1,2 1 Dept. Computer Science, Palacky University, Olomouc 17. listopadu 12, Olomouc, CZ 771 46, Czech Republic 2 SUNY

More information

Solutions - Homework 3 (Due date: November 2 5:30 pm) Presentation and clarity are very important! Show your procedure!

Solutions - Homework 3 (Due date: November 2 5:30 pm) Presentation and clarity are very important! Show your procedure! LCRICAL AN COMPUR NGINRING PARMN, OAKLAN UNIVRSIY C-2700: igitl Logic eign Fll 2017 Solution - Homework 3 (ue dte: November 2 nd @ 5:30 pm) Preenttion nd clrit re ver importnt! Show our procedure! PROBLM

More information

CHAPTER 2 COMPLEMENTS ARITHMETICS AND BINARY CODES. Prof. Dr. Mehmet Akbaba CME 221 LOGIC CIRCUITS

CHAPTER 2 COMPLEMENTS ARITHMETICS AND BINARY CODES. Prof. Dr. Mehmet Akbaba CME 221 LOGIC CIRCUITS CHAPTER 2 COMPLEMENTS ARITHMETICS AND BINARY CODES Prof. Dr. Mehmet Akbaba CME 221 LOGIC CIRCUITS 1 Prof. Dr. M. Akbaba BLM 221 This Chapter Includes: Complement Arithmetics r Complement Arithmetics r-1

More information

AFRL-RI-RS-TR

AFRL-RI-RS-TR AFRL-RI-RS-TR-2014-018 IC PIRACY PROTECTION BY APUF AND LOGIC OBFUSCATION RICE UNIVERSITY JANUARY 2014 FINAL TECHNICAL REPORT STINFO COPY AIR FORCE RESEARCH LABORATORY INFORMATION DIRECTORATE AIR FORCE

More information

Citi Order Routing and Execution, LLC ( CORE ) Order Handling Document

Citi Order Routing and Execution, LLC ( CORE ) Order Handling Document Citi Order Routing and Execution, LLC ( CORE ) Order Handling Document CORE s automated systems have been designed and are routinely enhanced to automatically provide the highest level of regulatory compliance

More information

Insertion loss (db) TOP VIEW SIDE VIEW BOTTOM VIEW. 4x ± ± Orientation Marker Denotes Pin Location 4x 0.

Insertion loss (db) TOP VIEW SIDE VIEW BOTTOM VIEW. 4x ± ± Orientation Marker Denotes Pin Location 4x 0. Model DC4759J52AHF Ultra Low Profile 85 2dB Directional Coupler Description The DC4759J52AHF is a low cost, low profile sub-miniature high performance 2 db directional coupler in an easy to use RoH compliant,

More information

Supersedes: 9/01/11 (Rev.5) Preparer: Owner: Approver: Team Member, North America Process Safety Center of Expertise

Supersedes: 9/01/11 (Rev.5) Preparer: Owner: Approver: Team Member, North America Process Safety Center of Expertise Procedure No.: BC032.019 Page: 1 of 12 Preparer: Owner: Approver: Team Member, North America Process Safety Center of Expertise Manager, North America Process Safety Center of Expertise Sr. Vice President,

More information