CPSC 121: Models of Computation Lab #2: Building Circuits

Size: px
Start display at page:

Download "CPSC 121: Models of Computation Lab #2: Building Circuits"

Transcription

1 CSC 121: Models of Computti L #2: Building Circuits Ojectives In this l, ou will get more eperience with phsicl logic circuits using The Mgic Bo. You will lso get our first eposure to Logisim, tool for simulting circuits. Aout mrking The ls in CS 121 hve stndrd mrking scheme. All ls re out of 10. Two of the mrks re for the pre-l. Si mrks re for the items mrked TODO: so, if ou complete the pre-l nd the sic l ctivities, ou will get 80%. To get 100%, there re further nlsis questis, denoted with TODO (further nlsis):. You cn dditill get us mrk for the Chllenge rolem. 1 re-l Like lst week, there re four pre-l questis for this l, which re to prepre ou for this week s l. In l this week, our TA will provide ou with two ICs. The lel oth ICs will e covered, ut the notch is visile (so ou know the orientti to plce them our redord!). One of these chips is he inverter, chip with si inverters. The other is e of: qud 2-input NAND gte, qud 2-input AND gte, qud 2-input OR gte, or qud 2-input XOR gte. Your jo is to identif these chips. Before getting to the l, ou ll need pln. Here re some hints to get ou strted. Rered Secti 4, Appendi B, nd Secti 2.1 s entr the proe in The Mgic Bo User s Mnul. Think out how ou could wire up the two mster gtes ou hve so tht ou could see which e is the inverter. And ce ou ve found the inverter, think out how ou could wire up the other gte to tell wht sort of gte it is. 1. TODO (pre-l): How will ou determine which of the two chips is the he inverter? Sketch our wiring pln nd the steps ou ll tke. 2. TODO (pre-l): Once ou ve de tht, how will ou determine which e of the qud chips ou hve? Agin, sketch our wiring pln nd our steps. 1

2 3. TODO (pre-l): If ou could revel the chips lels, how would ou verif our nswers? (We re looking for strightforwrd nswer here; no tricks. Think out wht ou hve een doing in clss!) 4. TODO (pre-l): Wh didn t we include the qud 2-input NOR gte s e of the possile qud chips? 2 Eperimenting with n Unknown Chip As ou know from the pre-l, our TA will e giving ou the two mster chips. Using our pln, wire up nd use e chip to test which chip is our inverter. Then, wire up nd use secd our qud chip to determine which of the quds it is. You hve room to keep oth circuits our redord t the sme time; so, keep them oth to demstrte to our TA s ou finish. Rememer to use pproprite power nd ground cnectis, or ou m dmge the ICs! TODO: Which e ws the he inverter? How did ou figure it out? TODO: Which qud chip did ou hve? How did ou figure it out? 3 rcticing Deugging with The Mgic Bo During this term, ou will e uilding more nd more complicted circuits. Deugging is n importnt skill in doing this, e ou will find vitl with more comple wiring. An importnt w to void lot of deugging is to test incrementll: rther thn uild everthing t ce nd then test, uild porti, test it, move to the net porti, test it, nd so. But even when ou re testing smller compent, deugging will still e necessr. Some comm issues re: improperl powering or grounding n IC 2

3 using the wrg tpe of IC roken pin n IC plcing wire in the wrg hole of the redord, or putting the IC in the wrg spot For this secti, ou nd our prtner re to find nother pir with Mgic Bo. On our Mgic Bo, pln to wire (A B) (C D) ut d t do it ectl. (An emple of doing this is in Appendi B) Intentill mke two errors in the circuit, like the es discussed ove. One cvet, however: d t intentill destro n of the l equipment. So, do not fr chips powering the ground pins, nor rek n of the pins the ICs! When oth groups re de, swp Mgic Boes. TODO: Deug ech other s circuits. Wht were the two errors in it? You re encourged to refer to the Mgic Bo User s Mnul nd the Mgic Bo Deugging Guide, oth of which our TA cn provide in pper cop. 4 Logisim 4.1 Your first simulti Log in to the Linu server using computer in the l. First, ou wnt to open up terminl (lso known s commnd prompt ). Find n ic tht looks like this, nd click it: If ou cnnot find such n ic, open up the min menu, nd find n entr clled Terminl. Once ou hve terminl open, tpe logisim nd hit the enter ke. This will run the progrm Logisim, which is the circuit simultor we will use in this clss. As seen in the imge elow, open the Help menu nd select Tutoril. 3

4 You will now get screen with the tutoril. It egins like this: TODO: Follow nd complete Steps 0 to 4 of the Logisim Tutoril. completed n XOR circuit. Show it to our TA when ou re de. B the end, ou will hve 4.2 A riorit Chin Circuit design is de much like softwre design. In code, we rek our progrms up into functis or methods: these cn then ct s self-ctined modules, which cn e reused esil. As such, modulrit is principle of good circuit design. Modules in Logisim re represented rectngles. Downlod the file priorit.circ from the CSC 121 wesite, nd open it in Logisim (File Open). You will see progrm tht hs si repeting, identicl modules wired up in chin: 4

5 Our gol with this ctivit is to edit the module to implement wht is clled priorit chin. In priorit chin, the l light tht will e turned is t the first module where is. This module of the chin is sid to hve the priorit. (We s tht stges to the left hve higher priorit thn stges to the right.) The chin lights the LED for the leftmost switch tht is in the positi, while ll other LEDs remin. Here is n emple: We see in this imge tht the first module with = TRUE hs illuminted, ut lter modules with do not. Also, note tht the first of the circuit is cnected to ground (FALSE). As such, we wnt circuit which hs the properties: is l if is nd is. is l if is or is. TODO: Fill in the module in our Logisim circuit so tht min hs working priorit chin like in the emple shown ove. To edit the module, right-click in the upper left-hnd menu (underneth min), nd select Edit Circuit Lout. You will get circuit like this: Once ou ve filled in this circuit, switch ck to the min module right-clicking it in the upper left-hnd menu nd selecting Edit Circuit Lout. Verif the priorit chin works s ou epected, nd then show it to our TA. 5

6 5 Further Anlsis TODO (further nlsis): We just showed ou circuit tht is roken up into modules nd told ou it ws good design. Wh do ou think tht is? Also, in this circuit, we fed outputs of the module into inputs of other modules hve ou seen nthing nlogous to this in progrmming? If so, wht? TODO (further nlsis): Getting to know our clssmtes will help ou succeed in this course s such, ou should lern their nmes. For this nlsis mrk, ou should e le to point out five of our clssmtes to our TA (without n written ids), identif their nmes, nd something out them. 6 End of L Surve TODO: To help us improve these ls oth this term nd for future erings, complete the surve t 7 Chllenge rolem Chllenge prolems re optil, nd re worth us mrk. If ou hve time in the l, ou should complete this eercise. TODO (chllenge): In the Logisim tutoril, ou mde circuit tht outputs n XOR vlue. Tht circuit ws mde using OR, AND nd NOT. Now mke circuit which outputs n XOR vlue using l NAND gtes. A Mrking Scheme All ls re out of ten mrks, with two mrks for pre-ls, nd eight mrks for in-l work. In more detil: Two mrks - re-l questis 6

7 Five mrks - In-l questis. Two mrks re for Secti 2. One is for Secti 3. Two re for Secti 4. Two mrks - Further nlsis. TAs m t their discreti wrd e us mrk, such s for completing the chllenge prolem. It is epected tht most students to chieve 6-8. If ou feel ou re heding for 0-4, get immedite help from the TAs! B Wiring Digrm for Smple Circuit Imgine we were designing circuit to compute (A B) (C D), we might use 74LS32 IC (two OR gtes, using pins 1 3 nd 11 13) nd 74LS08 IC (e AND gte, using pins 1 3). To prepre for wiring the phsicl circuit, we could mrk up digrm s in Figure 1. A B 74LS (A OR B) AND (C OR D) 3 C LS08 D LS32 Figure 1: A circuit computing (A B) (C D), leled with IC prt nd pin numers. As we wire the circuit, our first wired gte might look like Figure 2. In the figure, we hve wired up the OR gte for C D ccording to Figure 1: 74LS32 IC wired (1) to power with red wire (pin 14 in the upper-right, using the colour reserved for power); (2) to ground with lck wire (pin 7 in the lower-left, using the colour reserved for ground); nd (3) to the inputs nd output with green nd ellow wires (pins in the upper right, using ritrr colours tht distinguish inputs from outputs). This demstrtes the kind of creful circuit uilding methods tht cn mke our work with hrdwre smoother. Figure 2: A redord with the C D gte of (A B) (C D) wired ccording to Figure 1. 7

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS:

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS: CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOALS: In this l, the sic logic circuits will e

More information

Your Summer Holiday Resource Pack: English

Your Summer Holiday Resource Pack: English Messge Activity to Prents: Sheet The summer holidys re here! To help keep your child entertined, we ve put together Summer Holidy Resource Pck. It s een produced to reduce summer holidy lerning loss nd

More information

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 Dte: 15 Octoer 2018 Time: 2 hours Totl: 25 mrks SECTION C: ESSAY (15 MARKS) Write n essy out one of the given topics. Your essy should e

More information

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk.

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk. Nture Wlk Objectives 15 Before Reding Demonstrte understnding of the orgniztion nd bsic fetures of print Recognize nd red grde-pproprite irregulrly spelled words Red on-level text orlly with ccurcy pproprite

More information

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example ECE 274 Digitl Logic Sequentil Logic Design Sequentil Logic Design Process Digitl Design 3.4 3.5 Digitl Design Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the tetook Digitl Design,

More information

Chapter 1: Introduction

Chapter 1: Introduction Chpter : Introduction Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 7. http://www.ddvhid.com Copyright 7 Instructors of courses requiring Vhid's textbook (published

More information

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1 G N I K N I THmily TrHeeT FSTRAIG SeSSION 9 This session is dpted from the work of Dr.Gry O Reilly, UCD Session 9 Thinking Stright Pge 1 Lerning Objectives ful thinking tht To look t how we cn spot unhelp

More information

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load ECE 274 igitl Logic Multifunction Registers igitl esign 4. 4.2 igitl esign Chpter 4: Slides to ccompny the textbook igitl esign, First Edition, by Frnk Vhid, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com

More information

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following?

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following? Purcell: Music for While Section A: Musicl contexts Like the Bch Brndenurg Concerto No. 5 in Workook 1, this song y Henry Purcell ws composed during the Broque er. To understnd the music it is helpful

More information

Unit 10: I don t feel very well

Unit 10: I don t feel very well Unit 10: I don t feel very well 10 1 The story: We meet Clire, phrmist, nd Greg, ustomer t the phrmy. Greg initilly goes to the phrmy to get something for hedhe, ut then he flls for Clire nd goes k repetedly

More information

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu-

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu- Ir melody- is sung without its rhythm, it immeditely loses much of its essence. P-.bythm is s fundmentl to mu- sic s pitch, possibly even more so. Rhythm is built into our bodies s hertbets, or s the motion

More information

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from Omron STI Appliction Support Thnk you for your interest in Omron STI products. Plese contct Omron STI with your ppliction questions. Support Engineers re vilble t our U hedqurters from 4:00.m. until 5:00

More information

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the The Officil ISKCON IDENTITY SYSTEM A Mnul Concerning Grphic Stndrds nd Proper Implementtion As developed nd estlished y the COMMUNICATIONS DEPARTMENT of the INTERNATIONAL SOCIETY FOR KRISHNA CONSCIOUSNESS

More information

Lecture 3: Circuits & Layout

Lecture 3: Circuits & Layout Lecture 3: Circuits & Lyout Slides courtesy of eming Chen Slides sed on the initil set from vid Hrris CMOS VLSI esign Outline CMOS Gte esign Pss Trnsistors CMOS Ltches & Flip-Flops Stndrd Cell Lyouts Stick

More information

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots.

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots. Unit Nture Lerning Link In this unit you will lern words nd phrses to help you tlk out the nturl world. to tell story using pictures. to write letter out dy out in the countryside. to use the Pst Simple

More information

THE MOSSAT COLLECTION BOOK SIX

THE MOSSAT COLLECTION BOOK SIX TH TH PRACTICALITIS OF LARNIN AN WRITIN A TUN MOSSAT COLLCTION BOOK SIX PRACTICALITIS OF LARNIN AN WRITIN A TUN. Along with other gems BY Jim McCombie 1 TH PRACTICALITIS OF LARNIN AN WRITIN A TUN Thnk

More information

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets Animls Adventures in Reding: Fmily Litercy Bgs from Reding Rockets Contents: Two books one fiction, one nonfiction Prent informtion sheet Three ctivity sheets Bookmrk Prent survey ADVENTURES IN READING

More information

VISUAL IDENTITY GUIDE

VISUAL IDENTITY GUIDE VISUAL IDENTITY GUIDE contents Bsic Section Visul Identity System Bsic Prt Appliction Section Visul Identity System Appliction Prt 1.1 Logo System Design 1.1.1 Stndrd Color Grphics of The Logo 1.1.2 Stndrd

More information

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep.

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep. You nd your fmily Here re eight key fire cn tke prt in sfety tips tht you should know Dy cre centres (ges 3 to 5) Kindergrten (ges 4 to 5) flsh Sty wy from hot things tht cn burn! Tell grown-up if you

More information

Outline. Circuits & Layout. CMOS VLSI Design

Outline. Circuits & Layout. CMOS VLSI Design CMO VLI esign Circuits & Lyout Outline Brief History CMO Gte esign Pss Trnsistors CMO Ltches & Flip-Flops tndrd Cell Lyouts tick igrms lide 2 Brief History 958: First integrted circuit Flip-flop using

More information

Pitch I. I. Lesson 1 : Staff

Pitch I. I. Lesson 1 : Staff Pitch Lesson 1 : Stff n this lesson you will lern bout the five-line stff, pitches nd notes, noteheds, scending nd descending motion, steps nd leps, ledger lines. Music is written on five-line stff: five

More information

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor:

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor: Music Theory II (MUT 1112) w Nme: Instructor: PRACTICE FINAL EXAM Prt-writing (45 minutes; 40%) Complete the prtil progression below with pproprite chord symbols. (There my be more thn one correct nswer.)

More information

1 --FORMAT FOR CITATIONS & DOCUMENTATION-- ( ) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS!

1 --FORMAT FOR CITATIONS & DOCUMENTATION-- ( ) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS! 1 --FORMAT FOR CITATIONS & DOCUMENTATION-- (2014-2015) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS! -----SEE LAST PAGE FOR SUMMARIES AND PARAPHRASES----- Tle of Contents 1. Source

More information

Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003

Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003 Mxim > Design Support > Technicl Documents > Appliction Notes > Microcontrollers > APP 712 Keywords: DS80C400, ethernet drivers, ethernet controller, TCP/IP router, source code, MII, MAC, PHY, ethernet

More information

Synchronising Word Problem for DFAs

Synchronising Word Problem for DFAs Synchronising Word Prolem for DFAs Automt Theory nd Computility Rghunndn M. A. Deprtment of Computer Science nd Automtion Indin Institute of Science, nglore rghunndn.m@gmil.com August 26, 2011 Tle of Contents

More information

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy?

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy? UNIT 7Tourism Ledership Sports Big Adventures Lesson One Before you red Why might you like to hve n dventure? Wht kind of dventures might you enjoy? Wht re these people doing? Would you be frid to try?

More information

Applications to Transistors

Applications to Transistors CS/EE1012 INTRODUCTION TO COMPUTER ENGINEERING SPRING 2013 LAYERED COMPUTER DESIGN 1. Introduction CS/EE1012 will study complete computer system, from pplictions to hrdwre. The study will e in systemtic,

More information

CMST 220 PUBLIC SPEAKING

CMST 220 PUBLIC SPEAKING CMST 220 PUBLIC SPEKING RED G. METZGER, INSTRUCTOR OICE: RINIER 213 PHONE: 253-964-6659 fmetzger@pierce.ctc.edu O V E R V I E W PUBLIC SPEKING IS N OPPORTUNITY TO LOOK GOOD IN RONT O PEOPLE. LL YOUR LIE

More information

SEA SHEET MUSIC. Grace. low voice and piano. Elizabeth Alexander. Seafarer Press

SEA SHEET MUSIC. Grace. low voice and piano. Elizabeth Alexander. Seafarer Press SEA-127-00 - SHEET MUSC Grce low voice nd pino Elizbeth Alexnder n memory of Henry Grce Tenderly low voice nd pino E / E / F/A 4 4 Elizbeth Alexnder 6 E / F /A G7 t's hold peo my ple hed sty up to f ge

More information

SEA SHEET MUSIC. Grace. medium voice and piano. Elizabeth Alexander. Seafarer Press

SEA SHEET MUSIC. Grace. medium voice and piano. Elizabeth Alexander. Seafarer Press SEA-127-01 - SHEET MUSC Grce medium voice nd pino Elizbeth Alexnder Sefrer Press n memory of Henry Grce medium voice nd pino Tenderly G/ G/ A/C 4 4 Elizbeth Alexnder 6 G/ A /C B7 t's hold peo my ple hed

More information

Chapter 3: Sequential Logic Design -- Controllers

Chapter 3: Sequential Logic Design -- Controllers Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com Copyright 27 Instructors of courses requiring

More information

SEA SHEET MUSIC. Grace. high voice and piano. Elizabeth Alexander. Seafarer Press

SEA SHEET MUSIC. Grace. high voice and piano. Elizabeth Alexander. Seafarer Press SA-127-02 - SHT MUSC Grce high voice nd pino lizbeth Alexnder n memory of Henry Grce high voice nd pino Tenderly A/ A/ B/D 4 4 lizbeth Alexnder 6 A/ B /D C 7 t's hold peo my ple hed sty up to f ge ter

More information

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3 eproducible Spring ing! eproducible music for, or octves hndbells or hndchimes by Tmmy Wldrop Contents Performnce Suggestions... The Gtheing... Esily memorized, surround sound, to strt off ny event. L+

More information

LOGICAL FOUNDATION OF MUSIC

LOGICAL FOUNDATION OF MUSIC LOGICAL FOUNDATION OF MUSIC philosophicl pproch Im Anfng wr die Tt Goethe, Fust CARMINE EMANUELE CELLA cecily@liero.it www.cryptosound.org NATURE OF MUSICAL KNOWLEDGE Musicl knowledge cn e thought s complex

More information

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM GRLINKTM FullTM - DulseTM - setm Full-Fetured se, Medium nd Full Cmer Link Frme Grbbers GRLINK Full TM GRLINK Dulse TM GRLINK se TM www.euresys.com info@euresys.com Copyright 011 Euresys s.. elgium. Euresys

More information

Operation Manual. Cutting Machine Product Code: 891-Z01

Operation Manual. Cutting Machine Product Code: 891-Z01 Opertion Mnul Cutting Mchine Product Code: 891-Z01 Be sure to red this document efore using the mchine. We recommend tht you keep this document nery for future reference. TRADEMARKS IMPORTANT: READ BEFORE

More information

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja LOGOMANUAL guidelines how to use Singing Rock logotype In cse of ny questions, contct our grphic designer Lukáš Mtěj +420 775 282 064 luks.mtej@singingrock.cz Version 1.5 English PRIMARY LOGOTYPE Primry

More information

Homework 1. Homework 1: Measure T CK-Q delay

Homework 1. Homework 1: Measure T CK-Q delay Homework Find the followin for 3nm, 9nm, 65nm nd 45nm, 32nm, 22nm MO technoloies Effective chnnel lenth Equivlent nd physicl oxide thickness upply volte (Vdd) rw the lyout for the followin Flip-Flop (use

More information

Corporate Logo Guidelines

Corporate Logo Guidelines Corporte Logo Guidelines The llpy logo Inspirtion The logo is inspired by llpy s commitment to the world of secure nd complete pyment services. The solid circle surrounding the nme represents bullet proof

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 28. Setting Up the Projector 15

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 28. Setting Up the Projector 15 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Prts nd Functions... 8 Projector Prts - Front/Side... 8 Projector Prts - Top/Side... 9 Projector Prts -

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-203 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Chapter 5. Synchronous Sequential Logic. Outlines

Chapter 5. Synchronous Sequential Logic. Outlines Chpter 5 Synchronous Sequentil Logic Outlines Sequentil Circuits Ltches Flip-Flops Anlysis of Clocke Sequentil Circuits Stte Reuction n Assignment Design Proceure 2 5. Sequentil Circuits Sequentil circuits

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_4_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

A Guilder And A Half

A Guilder And A Half Book & Lyrics: Pul Jmes Andnte (q = c.76) Pino mp girl, Scene: in the newspper office. A Guilder And A Hlf mf Eyes mf red? beu - ti - ful girl, fll on the news cresc. f (con pssione) Some f - where is

More information

Appendix A. Quarter-Tone Note Names

Appendix A. Quarter-Tone Note Names 233 Appendx A Qurter-Tone Note Nmes The followng tble lsts ll possble note nmes, rngng from double flts to double shrps, for ech of the 24 possble ptch-clsses. Enhrmonclly equvlent note nmes pper on the

More information

TACT2015 Staff ReCertification Test 2015 Please write ONLY on the answer sheet

TACT2015 Staff ReCertification Test 2015 Please write ONLY on the answer sheet TACT2015 Stff ReCertifition Test 2015 Plese write ONLY on the nswer sheet Prt 1: Complete the TACT2 Deision Mking Moel. (5 onus points) Prt 2: Choose the est nswer for eh question. (20 items @ 5 points)

More information

style type="text/css".wpb_animate_when_almost_visible { opacity: 1; }/style

style type=text/css.wpb_animate_when_almost_visible { opacity: 1; }/style style type="text/css".wpb_nimte_when_lmost_visible { opcity: 1; }/style Jul 11, 5 thousnd dollrs week life 2011 5 thousnd dollrs week life. 5 thousnd dollrs week life The $5000 A Week For Life Winner Selection

More information

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division Objectives In this lab, you will see two types of sequential circuits: latches and flip-flops. Latches and flip-flops can be used

More information

Star. Catch a. How. Teachers Pack. A starry moonlit adventure. Based on the beautiful picture book by Oliver Jeffers

Star. Catch a. How. Teachers Pack. A starry moonlit adventure. Based on the beautiful picture book by Oliver Jeffers A strry moonlit dventure Bsed on the beutiful picture book by Oliver Jeffers Techers Pck A must-see for smll people ged 3-7, nd grown-up strgzers! Contents 3 - Hello from boy 4 - All bout boy 5 - About

More information

Can you believe your eyes?

Can you believe your eyes? UNIT 2 Cn you elieve your eyes?, negtive prefixes, expressing degrees of certinty, modl vers Listening: opticl illusions explined 1 In pirs Look t these three imges nd nswer the questions. Compre your

More information

Explosion protected add-on thermostat

Explosion protected add-on thermostat Dt Sheet 605051 Pge 1/7 Explosion protected dd-on thermostt ATH-EXx type series Prticulrities 10 A contct rting cn be directly fitted in zone 1, 2, 21 nd 22 optionl -50 C used Control rnges from -20 to

More information

to London Waterloo Train times 20 May to 6 October 2018 Includes Great Western Railway services updated from June 2018 London Waterloo

to London Waterloo Train times 20 May to 6 October 2018 Includes Great Western Railway services updated from June 2018 London Waterloo 2 Reing n to Lonon Wterloo Inclues Gret Western Rilw serices upte from June 2018 Felthm (for Hethrow Airport) Richmon Twickenhm Lonon Wterloo unningle Mrtins Heron Brcknell Wokinghm Tringle Erle Reing

More information

Sequencer devices. Philips Semiconductors Programmable Logic Devices

Sequencer devices. Philips Semiconductors Programmable Logic Devices hilips emiconductors rogrmmle Logic Devices equencer devices INTODUTION Ten yers go, in their serch for strightforwrd solution to complex sequentil prolems, hilips emiconductors originted rogrmmle Logic

More information

lookbook Higher Education

lookbook Higher Education Higher Eduction Higher Eduction Introduction Your digitl signge success hinges on creting unique nd integrted cmpus experience for students, fculty, lumni nd visitors. The ever-expnding rnge of solutions

More information

4 Food, glorious food!

4 Food, glorious food! 4 Food, glorious food! Show wht you know! Listening 1 14 CD2 Wht food words n you rememer? Listen nd tik ( ) the food words you her. Wednesdy fternoon 2 15 CD2 Listen gin. Who sid it? 1 We ll mke Trte

More information

Contents 2. Notations Used in This Guide 7. Introduction to Your Projector 8. Using Basic Projector Features 34. Setting Up the Projector 17

Contents 2. Notations Used in This Guide 7. Introduction to Your Projector 8. Using Basic Projector Features 34. Setting Up the Projector 17 User's Guide Contents 2 Nottions Used in This Guide 7 Introduction to Your Projector 8 Projector Fetures... 9 Long-life Lser Light Source... 9 Quick nd Esy Setup... 9 Esy Wireless Projection... 9 Projecting

More information

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division Objectives In this lab, we will see the sequential circuits latches and flip-flops. Latches and flip-flops can be used to build

More information

DIGITAL ELECTRONICS: LOGIC AND CLOCKS

DIGITAL ELECTRONICS: LOGIC AND CLOCKS DIGITL ELECTRONICS: LOGIC ND CLOCKS L 6 INTRO: INTRODUCTION TO DISCRETE DIGITL LOGIC, MEMORY, ND CLOCKS GOLS In this experiment, we will learn about the most basic elements of digital electronics, from

More information

The wonders of the mind. The way we are. Making a difference. Around the world. Module 1. Module 2. Module 3. Module 4

The wonders of the mind. The way we are. Making a difference. Around the world. Module 1. Module 2. Module 3. Module 4 Module 1 The wonders of the mind Unit Grmmr Voculry Pronuncition 1 Super rins Tense revision: present tense forms Tense revision: pst tense forms 2 Mind over mtter Pssives review Pssive continuous tenses

More information

Outline. Annual Sales. A Brief History. Transistor Types. Invention of the Transistor. Lecture 1: Circuits & Layout. Introduction to CMOS VLSI Design

Outline. Annual Sales. A Brief History. Transistor Types. Invention of the Transistor. Lecture 1: Circuits & Layout. Introduction to CMOS VLSI Design Introduction to MO VLI esin Lecture : ircuits & Lyout vid Hrris Outline rief History MO Gte esin Pss Trnsistors MO Ltches & Flip-Flops tndrd ell Lyouts tick irms Hrvey Mudd ollee prin lide rief History

More information

WE SERIES DIRECTIONAL CONTROL VALVES

WE SERIES DIRECTIONAL CONTROL VALVES WE SERIES DIRECTIONL CONTROL VLVES ISO4401 Size 03 ulletin 80340- DESIGNTION PGE Fetures nd Generl Description 3 Specifictions 4 Operting Limits 5 Tle of Contents Performnce Dt 6 Stndrd Models 7-8 Dimensions

More information

A New Concept of Providing Telemetry Data in Real Time

A New Concept of Providing Telemetry Data in Real Time The Spce Congress Proceedings 1967 (4th) Spce Congress Proceedings Apr 3rd, 12: AM A New Concept of Providing Telemetry Dt in Rel Time John M. Bllock Pn Americn World Airwys, GMRD, Ptrick Air Force Bse,

More information

Panel-mounted Thermostats

Panel-mounted Thermostats sles@jumo.co.uk info.us@jumo.net Dt Sheet 602010 Pge 1/7 Pnel-mounted Thermostts ETH Series Specil fetures Version ccording to DIN EN 14597 Pressure Equipment Directive 97/23/EC Brief description Pnel-mounted

More information

DIGITAL EFFECTS MODULE OWNER'S MANUAL

DIGITAL EFFECTS MODULE OWNER'S MANUAL DIGITL EFFECTS MODULE OWNER'S MNUL Introduction Thnk you for purchsing the DEP (bbrev For: Digitl Effects Processor) To tke full dvntge of the DEP's functions, nd to enjoy long nd trouble-free use, plese

More information

Grammar & vocabulary revision 1

Grammar & vocabulary revision 1 Grmmr & voculry revision 1 Grmmr Present tense review 1 Complete the text with the present simple or present continuous form of the vers in rckets. I m sitting (sit) on the us on my wy to meet my friend

More information

PIRELLI BRANDBOOK 4. IDENTITY DESIGN

PIRELLI BRANDBOOK 4. IDENTITY DESIGN PIRELLI BRANDBOOK 4. IDENTITY DESIGN 4.01 LOGOTYPE 4.01 The PIRELLI logotype The logotype is one of the most importnt elements of PIRELLI s visul identity. The logotype consists of the lettering PIRELLI

More information

Pro Series White Toner and Neon Range

Pro Series White Toner and Neon Range WHEN YOU REGISTER YOUR PRODUCT Pro Series White Toner nd Neon Rnge Discover New Dimension in Colour printing for grment decortion, signge nd design Pro7411WT White Toner (CMYW) A4 printer Pro8432WT White

More information

4.1* Combinational logic circuits implement logic functions using a combination of logic gates. Recall

4.1* Combinational logic circuits implement logic functions using a combination of logic gates. Recall CALIFORNIA STATE UNIVERSITY LOS ANGELES Department of Electrical and Computer Engineering EE-2449 Digital Logic Lab EXPERIMENT 4 LOGIC FUNCTIONS Text: Mano and Ciletti, Digital Design, 5 th Edition, Chapter

More information

ASSEMBLING. the. ECEbot. Printed Circuit Board: Part Three. Due Date. The Part Three assembly steps must be completed prior to:

ASSEMBLING. the. ECEbot. Printed Circuit Board: Part Three. Due Date. The Part Three assembly steps must be completed prior to: ASSEMBLING the ECEbot Printed Circuit Board: Part Three Due Date The Part Three assembly steps must be completed prior to: Prepared by R.C. Maher September 2008 Copyright 2008 Department of Electrical

More information

User's Guide. Downloaded from

User's Guide. Downloaded from User's Guide Downloded from www.vndenborre.be Contents 2 Nottions Used in This Guide 6 Connecting to Composite Video Source... 26 Connecting to Externl USB Devices... 27 Introduction to Your Projector

More information

VOCAL MUSIC I * * K-5. Red Oak Community School District Vocal Music Education. Vocal Music Program Standards and Benchmarks

VOCAL MUSIC I * * K-5. Red Oak Community School District Vocal Music Education. Vocal Music Program Standards and Benchmarks INTEGRATIONS: CE=Creer Eduction; CM=Communiction Skills; GE=Glol Eduction; HOTS=Higher Order Thinking Skills; LS=Lerning & Studying; MCGF=Multiculturl/Gender Fir; T=Technology Vocl Music Progrm Stndrds

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 30. Setting Up the Projector 17

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 30. Setting Up the Projector 17 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

The Big Wide World. spices. harbour

The Big Wide World. spices. harbour The ig Wide World VOAULARY 1 efore You Red A Lbel the pictures. Use the words below. hrbour medicl supplies spices street vendor cruise ship b spices cruise ship c medicl supplies d hrbour e street vendor

More information

Notations Used in This Guide

Notations Used in This Guide User's Guide Nottions Used in This Guide Sfety indictions The documenttion nd the projector use grphicl symbols to show how to use the projector sfely. Plese understnd nd respect these cution symbols in

More information

Contents. English. English. Your remote control 2

Contents. English. English. Your remote control 2 English Contents Your remote control 2 Instlltion Preprtion 3 Connect your computer 4 Switch on 5 Select your enu lnguge 5 Serch for nd Store chnnels Automtic instlltion 7 nul instlltion 8 Reshuffle the

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

Notations Used in This Guide

Notations Used in This Guide User's Guide Nottions Used in This Guide Sfety indictions The documenttion nd the projector use grphicl symbols to show how to use the projector sfely. The indictions nd their mening re s follows. Mke

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

Nice to meet you ENTRY TEST. Greetings and introductions. Countries and nationalities. The verb be. Complete the dialogue with the words in the box.

Nice to meet you ENTRY TEST. Greetings and introductions. Countries and nationalities. The verb be. Complete the dialogue with the words in the box. Cmridge University Press 978-0--697-6 - English in Mind Techer s Resource Pck, Second Edition Srh Ackroyd nd Clire Thcker More informtion Nice to meet you Nme Clss Dte Greetings nd introductions Complete

More information

Brothers. The Iowa Review. Bret Lott. Volume 19 Issue 1 Winter. Article 35

Brothers. The Iowa Review. Bret Lott. Volume 19 Issue 1 Winter. Article 35 The Iow Review Volume 19 Issue 1 Winter Article 35 1989 Brothers Bret Lott Follow this nd dditionl works t: http://ir.uiow.edu/iowreview Prt of the Cretive Writing Commons Recommended Cittion Lott, Bret.

More information

Answers to Exercise 3.3 (p. 76)

Answers to Exercise 3.3 (p. 76) Answers to Exercise 3.3 (p. 76) First of ll, check to see tht you hve weighted your dtset with the vrible WTCORRCT (see Figure 2.5 on p. 52 for how to do this). Once this hs been done, you then need to

More information

Standard Databases for Recognition of Handwritten Digits, Numerical Strings, Legal Amounts, Letters and Dates in Farsi Language

Standard Databases for Recognition of Handwritten Digits, Numerical Strings, Legal Amounts, Letters and Dates in Farsi Language Stndrd Dtbses for Recognition of Hndwritten, Numericl Strings, Legl Amounts, Letters nd Dtes in Frsi Lnguge Frshid Solimnpour, Jvd Sdri, Ching Y. Suen To cite this version: Frshid Solimnpour, Jvd Sdri,

More information

92.507/1. EYR 203, 207: novaflex universal controller. Sauter Systems

92.507/1. EYR 203, 207: novaflex universal controller. Sauter Systems 92.507/1 EYR 203, 207: novflex universl controller novflex, universl controller of the EY3600 fmily, is used in HVAC control systems. The EYR 203 hs totl of 18 inputs nd 10 outputs, while the EYR 207 hs

More information

Avaya P460. Quick Start Guide. Important Information. Unpack the Chassis. Position the Chassis. Install the Supervisor Module and PSU

Avaya P460. Quick Start Guide. Important Information. Unpack the Chassis. Position the Chassis. Install the Supervisor Module and PSU Avy P460 Modulr Multilyer Switch Quick Strt Guide Importnt Informtion Unpck the Chssis Position the Chssis 1 2 3 Note: Refer to Importnt Informtion before strting the instlltion Instll the Supervisor Module

More information

Installation Instruction

Installation Instruction Inllion Inruion Englih UNPACKING INSTRUCTIONS! Crefully open he ron, remove onen nd ly ou on rdord or oher proeive urfe o void dmge.! Chek pkge onen gin he Supplied Pr Li in he nex pge o ure h ll omponen

More information

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs Mpping Aritrry Logic Functions into Synchronous Emedded Memories For Are Reduction on FPGAs Gordon R. Chiu, Deshnnd P. Singh, Vlvn Mnohrrjh, nd Stephen D. Brown Toronto Technology Center, Alter Corportion

More information

Digital Fundamentals. Lab 5 Latches & Flip-Flops CETT Name: Date:

Digital Fundamentals. Lab 5 Latches & Flip-Flops CETT Name: Date: Richland College School of Engineering & Technology Rev. 0 B. Donham Rev. 1 (7/2003) J. Horne Rev. 2 (1/2008) J. Bradbury Rev. 3 (7/2015) J. Bradbury Digital Fundamentals CETT 1425 Lab 5 Latches & Flip-Flops

More information

Essential Question: How can you use transformations of a parent square root function to graph. Explore Graphing and Analyzing the Parent

Essential Question: How can you use transformations of a parent square root function to graph. Explore Graphing and Analyzing the Parent COMMON CORE 4 9 7 5 Locker LESSON Graphing Square Root Functions Common Core Math Standards The student is epected to: COMMON CORE F-IF.C.7 Graph square root... functions. Also F-IF.B.4, F-IF.B.6, F-BF.B.

More information

DIGITAL TECHNICS. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute

DIGITAL TECHNICS. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute DIGITL TECHNICS Dr. álint Pődör Óbuda University, Microelectronics and Technology Institute 10. LECTURE (LOGIC CIRCUITS, PRT 2): MOS DIGITL CIRCUITS II 2016/2017 10. LECTURE: MOS DIGITL CIRCUITS II 1.

More information

Interactions of Folk Melody and Transformational (Dis)continuities in Chen Yi s Ba Ban

Interactions of Folk Melody and Transformational (Dis)continuities in Chen Yi s Ba Ban Interctions of Folk Melody nd Trnsformtionl (Dis)continuities in Chen Yi s B Bn John Roeder University of British Columi Chinese twelvetone composers ] vried esthetic principles re t the core of their

More information

When it comes to creating music, composers like to push the limits. Get ready to hear how!

When it comes to creating music, composers like to push the limits. Get ready to hear how! When it comes to creting music, composers like to push the limits. Get redy to her how! Ntionl Symphony Orchestr Young People s Concert Ankush Kumr Bhl, conductor Mriss Regni, NSO violinist nd host Dvid

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_6_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

TAP 413-1: Deflecting electron beams in a magnetic field

TAP 413-1: Deflecting electron beams in a magnetic field TAP 413-1: Deflecting electron bems in mgnetic field Circulr control Mgnetic fields re often used to steer bems of chrged prticles, in situtions from teleision tube to lrge-scle prticle ccelertor. The

More information

Strange but true! Vocabulary 1 Prepositions. Reading 1. Listen and repeat the prepositions. their superstitions? down

Strange but true! Vocabulary 1 Prepositions. Reading 1. Listen and repeat the prepositions. their superstitions? down Strnge but true! Vocbulry Prepositions.9 Listen nd repet the prepositions. under round down towrds through into up cross long over wy from out of Which prepositions re opposites? Write them in pirs. Choose

More information

A Proposed Keystream Generator Based on LFSRs. Adel M. Salman Baghdad College for Economics Sciences

A Proposed Keystream Generator Based on LFSRs. Adel M. Salman Baghdad College for Economics Sciences A Proposed Keystrem Genertor Bsed on LFSRs Adel M Slmn Bghdd College for Economics Sciences 1 2 2012 مجلة كلية بغداد للعلوم الاقتصادية الجامعة العدد الرابع و الثلاثون UAbstrct A strem cipher is system

More information

NEW MEXICO STATE UNIVERSITY Electrical and Computer Engineering Department. EE162 Digital Circuit Design Fall Lab 5: Latches & Flip-Flops

NEW MEXICO STATE UNIVERSITY Electrical and Computer Engineering Department. EE162 Digital Circuit Design Fall Lab 5: Latches & Flip-Flops NEW MEXICO STATE UNIVERSITY Electrical and Computer Engineering Department EE162 Digital Circuit Design Fall 2012 OBJECTIVES: Lab 5: Latches & Flip-Flops The objective of this lab is to examine and understand

More information

The Media. Business. Sports. 1 Correct the labels on the webpage. 2 Look at Activity 1 again and complete. Rob: That s right. New Role for Hermione.

The Media. Business. Sports. 1 Correct the labels on the webpage. 2 Look at Activity 1 again and complete. Rob: That s right. New Role for Hermione. The Medi 1 Correct the lels o the wepge Busiess 2 Look t Activity 1 gi d complete Mom: This ews wepge looks good How do Tht s 3 you use it? Ro: It s esy If you wt to fid out how Sports Mom: Oh, OK Now,

More information

Efficient Building Blocks for Reversible Sequential

Efficient Building Blocks for Reversible Sequential Effiient Building Bloks for Reversile Sequentil Ciruit Design Siv Kumr Sstry Hri Shym Shroff Sk. Noor Mhmmd V. Kmkoti Reonfigurle nd Intelligent Systems Engineering Group, Deprtment of Computer Siene nd

More information

NEW CUTTING ELEMENTARY. with mini-dictionary STUDENTS BOOK. with frances eales

NEW CUTTING ELEMENTARY. with mini-dictionary STUDENTS BOOK. with frances eales NEW CUTTING ELEMENTARY with mini-ditionry STUDENTS BOOK srh unninghm with frnes eles peter moor CONTENTS Module Lnguge fous Voulry Reding / Listening Module 0 Wht English do you know? pge 6 Common words

More information

Predicted Movie Rankings: Mixture of Multinomials with Features CS229 Project Final Report 12/14/2006

Predicted Movie Rankings: Mixture of Multinomials with Features CS229 Project Final Report 12/14/2006 Predicted ovie Rnkings: ixtre of ltinomils with Fetres CS229 Project Finl Report 2/4/2006 Introdction H Ji Chew Dimitris Economo Rlene Yng hji@stnford.ed dimeco@stnford.ed rlene@stnford.ed The Netflix

More information