History & Binary Representation

Total Page:16

File Type:pdf, Size:1020Kb

History & Binary Representation History & Binary Representation C. R. da Cunha∗1 1Instituto de F´ısica,Universidade Federal do Rio Grande do Sul, RS 91501-970, Brazil. August 30, 2017 Abstract In this lesson we will review the history of electronics and the devel- opment of the first microprocessors. Keywords| Microcontrollers; Microprocessors; Electronics; Digital. 1 History Let us begin with the history of semiconductors and contemporary electronics. Although it started in Germany, it flourished at the Bell Labs in the United States. ∗[email protected] 1 1874 Diode effect discovered by Ferdinand Braun at the University of Berlin. 1906 Diode patented. 1925 Bell Labs is founded. 1925 MOS transistor is patented by Julius Lilienfeld. 1929 Walter Brattain joins Bell Labs. 1934 Another MOS patent by Oskar Heil. 1936 Mervin Kelly becomes director of Bell Labs. 1936 William Shockley joins Bell Labs. 1945 John Bardeen joins Bell Labs. 1947 Bardeen and Brattain conceive the Point Contact Transistor. 1948 Shockley invents the Bipolar Junction Transistor. 1953 First transistor computer built at the University of Manchester by Dick Grimsdale. 1954 Transistors are fabricated in Si by Morris Tanenbaum at Bell Labs. 1956 Nobel Prize for the invention of the transistor. 1956 Shockley found Shockley Semiconductor Laboratory in Mountain View, CA. 1957 Robert Noyce, Gordon Moore, Jean Hoerni and the other traitorous eight found Fairchild Semiconductors. 1958 Jack Kilby at Texas Instruments and Robert Noyce at Fairchild Semiconductors independently develop the fist Integrated Circuit. 1959 Planar transistor developed by Jean Hoerni at Fairchild Semiconductors. 1968 Robert Noyce and Gordon Moore found Intel Corporation. Soon after Intel is founded, a new revolution starts by making electronic circuits mimick the behavior of machines such as Charles Babbage's difference engine from 1822, Alan Turing's a-machine from 1936, and John Atanasoff and Clifford Berry's automatic electronic digital computer from 1942. Soon after in 1946, John Brainerd at the University of Pennsylvania develop the Electronic Numerical Integrator and Computer (ENIAC). The first transistorized computer appeared in 1955 at the University of Manchester under the leadership of Tom Kilburn. It took another 15 years for the development of integrated processors. 2 Figure 1: DIP, PLCC and PGA packagings. Model Year W/Mem. [bits] [MHz] MIPS Applications Intel 4004 1971 4 BCD/12 .74 .056 Calculators Intel 8008 1972 8/14 .80 .12 Calc./Robots Intel 4040 1974 4 BCD/13 .74 .060 Calculators TI TMS1000 1974 4/8 .4 .050 Calculators Intel 8080 1974 8/16 3.125 .29 Cash Registers G.In. CP1600* 1974 8/16 5 .2 Video Games Zilog Z80 1976 8/16 8 .40 Video Games MOS Tech 6502 1976 8/16 8 3.4 Video Games Intel MCS-48 1976 8/8 11 .5 Controllers Intel 8085 1976 8/16 6.5 1 Controllers Intel 8086 1978 16/16 10 .75 PC-XT Intel 8087 1979 16- 10 50 kFLOPS FPU Motorola 68000 1979 32/24 7.67 1 Mac/Video Games Intel 8051 1980 8/16 12 1 Controllers Intel 80186 1982 16/20 25 1 PC-AT Acorn ARM1/2 1985 32/26 6 8 Computers Atmel AVR 1996 8/ 8 8 Controllers (*) Microchip's PIC was born from there. 2 Microprocessors vs. Microcontrollers Microprocessors are units responsible for processing the flow of information in an eletronic system, whereas microcontrollers are units that incorporate a processor, a memory and other subunits to perform intelligent operations. Sim- ple microcontrollers can have packagings as simple as a DIP16 such as the Intel 4004. Most common microcontrollers are found in a DIP40 package, whereas modern microprocessors are found in packagings such as a 82 PLCC. Some of these packagings are shown in Fig. 1. 3 3 Binary Representation Let us begin our study of microcontrollers by reviewing the binary representa- tion and operations. A binary number has only two mnemonics. We will use 1 to represent the high state, and 0 to represent the low state. Thus, we can have a binary number such as 011001. This can be converted to decimal by: n X “ bn2 n ¸ 0 1 2 3 4 4 “ 1 ˆ 2 ` 0 ˆ 2 ` 0 ˆ 2 ` 1 ˆ 2 ` 1 ˆ 2 ` 0 ˆ 2 (1) “ 1 ` 8 ` 16 “ 25: The reverse operation can be constructed by successively dividing a decimal number by 2 and taking the remainder. For example: 25{2 “ 12 ` rr1s 12{2 “ 6 ` rr0s 6{2 “ 3 ` rr0s (2) 3{2 “ 1 ` rr1s 1{2 “ 0 ` rr1s; where r[x] is the remainder of the operation. Therefore, 25 can be represented as 11001. Now, let's take number 9 in binary: 9{2 “ 4 ` rr1s 4{2 “ 2 ` rr0s (3) 2{2 “ 1 ` rr0s 1{2 “ 0 ` rr1s It needs 4 bits to be represented. We could have reached the same result by taking Log2p9q « 3:17 Ñ 4. Thus, we can represent decimal numbers in groups of four bits. This is called binary coded decimal or BCD. For instance,25 would be represented as 0010 0101. It requires more bits to be represented but it has the advantage of simplicity. 3.1 Fixed Point Representation How do we represent real numbers? There are two possibilities, the first is to use fixed point The trick here is to apply a binary point. For example, let us take again number 25 in binary (11001) and apply a point so that we have 110.01. In this case we have: 4 110:01 “ 1 ˆ 22 ` 1 ˆ 21 ` 0 ˆ 20 ` 0 ˆ 2´1 ` 1 ˆ 2´2 “ 4 ` 2 ` 0:25 (4) “ 6:25: In our case both 25 and 6.25 have exacly the same representation in binary. The only difference is the point. 3.1.1 1's Complement And negative numbers? One strategy is to use the 1's complement by just negating the expression. For example, for our 25 we would have 011001 and -25 would be 100110 in a 6 bit notation. For a 3 bit representation we would have: ´3 “ 100 ´2 “ 101 ´1 “ 110 ´0 “ 111 (5) 0 “ 000 1 “ 001 2 “ 010 3 “ 011 This has some problems. For example, the 1's complement of 000000 (0) is 111111 (-0). Furthermore, arithmetic operations become problematic. Let's take for example 3-1 in a 3 bit representation. This would be 011 + 110, which would produce 001 and a carry-out bit of 1. This has to be added to the result and we obtain 010, which is the expected result. 3.1.2 2's Complement We can improve computations and use a 2's complement by always adding one. For example, 3 in a 3 bit representation is 011, thus -3 in 1's complement is 100. In 2's complement we only have to add 1 and obtain 101. Thus, again in a 3 bit representation we would have: ´4 “ 100 ´3 “ 101 ´2 “ 110 ´1 “ 111 (6) 0 “ 000 1 “ 001 2 “ 010 3 “ 011 5 This way, not only we avoid the problem of -0 as we also simplify the arithmetics. Let's see that example of 3-1 again now in 2's complement. This would be 011+111=010=2 with a carry bit that can be completely discarded. In 2's complement, overflow can be detected if summing two numbers of the same sign produces a number with an opposite sign. Let us now see how this works for signed fixed point numbers: ´2:0 “ 100 ´1:5 “ 101 ´1:0 “ 110 ´0:5 “ 111 (7) 0:0 “ 000 0:5 “ 001 1:0 “ 010 1:5 “ 011 3.1.3 Arithmetic For fixed point representation, addition and subtraction are exactly the same operations as we would do for integer numbers. For example: 0:5 ` 1:0 “ 00:1 ` 01:0 “ 01:1 “ 1:5 (8) 1:5 ´ 0:5 “ 01:1 ` 11:1 “ 01:0 “ 1:0 Now let's see how it works for multiplication. For simplicity let us drop the radix point and take care of it later. 010 ˆ 001 010 1:0 ˆ 0:5 “ (9) 000 ` 000 00010 We must now account for the radix point. Since both multiplicands have points after the first bit, the result has to have the point after two bits. Therefore, the result is 000.10. However, our representation includes only one bit for the fractional part and two for the integer part. We therefore must either truncate or round the result for the appropriate number of bits. It is simple in this case to just truncate it to 00.1, which in decimal is 0.5, the result that we expected. Let us now use two bits for each the integer and the fractional part. Our correspondence table becomes: 6 0:00 “ 0000 0:25 “ 0001 ´0:25 “ 1111 0:50 “ 0010 ´0:50 “ 1110 0:75 “ 0011 ´0:75 “ 1101 1:00 “ 0100 ´1:00 “ 1100 (10) 1:25 “ 0101 ´1:25 “ 1011 1:50 “ 0110 ´1:50 “ 1010 1:75 “ 0111 ´1:75 “ 1001 ´2:00 “ 1000 Let's multiply 0:25 ˆ ´2:00: 0001 ˆ 1000 0000 0000 (11) 0000 ` 1000 1000000 Our multiplicands have two bits for the fractional part. Therefore, the result should have four bits for its fractional part and we would get 100.0000. Trun- cating it we get 00.00, which is completely wrong. This happened because we did not account for the sign. One way to compensate for it is by expanding the bit sign: 1000 ˆ 0001 111000 0000 (12) 0000 ` 0000 0111000 We must place the point four bits from the right hand side end.
Recommended publications
  • Microprocessori
    Microprocessori R.k.e. edizioni Antonio Pucci Microprocessori R.k.e. edizioni Indice Introduzione Cpu o microprocessore pagina 7 Il primo processore pagina 8 Elenco dei processori per anno pagina 11 Elenco dei processori per codice pagina 27 Net-o-grafia pagina 61 5 Introduzione CPU o microprocessore Un microprocessore spesso abbreviato con µP è esempio di microprocessore un componente elettronico digitale formato da permise di ridurre transistor racchiuso in uno significativamente i costi dei o più circuiti integrati. calcolatori. Uno o più processori sono Dagli anni 80 in poi i utilizzati come Cpu da un microprocessori sono sistema di elaborazione praticamente l’unica digitale come può essere un implementazione di Cpu. personal computer, un palmare, un telefono cellulare o un altro dispositivo digitale. La costruzione dei microprocessori fu resa possibile dall’avvento della tecnologia Lsi: integrando una Cpu completa in un solo chip 7 Il primo processore L’ obbiettivo del progetto era pre-programmate. Comunque sia nel 1971 equipaggiare il nuovo F-14 Il 17 settembre 1971 che nel 1976 Intel e Ti Tomcat che allora era in annunciò il modello Tms stipularono un accordo sviluppo. 1802 Nc, programmabile, in cui Intel pagava a Ti Il progetto venne che poteva essere i diritti per l’utilizzo del completato nel 1970 e utilizzato per implementare suo brevetto. Un riassunto utilizzava integrati mos per un calcolatore. della storia e contenuto nella il core della Cpu. L’ Intel 4004, processore a documentazione che Intel Il microprocessore Il proggetto era semplice e 4 Bit, venne presentato il 15 presentò in tribunale quando apparve appena la tecnologia innovativo e novembre 1971 e fu fu chiamata in giudizio da lo consentì dato che l’idea vinse sui competitori sviluppato da Federico Cyrix per violazione dei di integrare i componenti elettromeccanici Faggin.
    [Show full text]
  • Lecture Notes in Assembly Language
    Lecture Notes in Assembly Language Short introduction to low-level programming Piotr Fulmański Łódź, 12 czerwca 2015 Spis treści Spis treści iii 1 Before we begin1 1.1 Simple assembler.................................... 1 1.1.1 Excercise 1 ................................... 2 1.1.2 Excercise 2 ................................... 3 1.1.3 Excercise 3 ................................... 3 1.1.4 Excercise 4 ................................... 5 1.1.5 Excercise 5 ................................... 6 1.2 Improvements, part I: addressing........................... 8 1.2.1 Excercise 6 ................................... 11 1.3 Improvements, part II: indirect addressing...................... 11 1.4 Improvements, part III: labels............................. 18 1.4.1 Excercise 7: find substring in a string .................... 19 1.4.2 Excercise 8: improved polynomial....................... 21 1.5 Improvements, part IV: flag register ......................... 23 1.6 Improvements, part V: the stack ........................... 24 1.6.1 Excercise 12................................... 26 1.7 Improvements, part VI – function stack frame.................... 29 1.8 Finall excercises..................................... 34 1.8.1 Excercise 13................................... 34 1.8.2 Excercise 14................................... 34 1.8.3 Excercise 15................................... 34 1.8.4 Excercise 16................................... 34 iii iv SPIS TREŚCI 1.8.5 Excercise 17................................... 34 2 First program 37 2.1 Compiling,
    [Show full text]
  • Lecture Notes in Assembly Language Piotr Fulmański
    Uniwersytet Łódzki Wydział Matematyki i Informatyki Informatyka Lecture Notes in Assembly Language Short introduction to low-level programming Piotr Fulmański Łódź, 2013 Spis treści Spis treści iii 1 Before we begin1 1.1 Simple assembler.................................... 1 1.1.1 Excercise 1 ................................... 2 1.1.2 Excercise 2 ................................... 2 1.1.3 Excercise 3 ................................... 3 1.1.4 Excercise 4 ................................... 5 1.2 Improvements, part I.................................. 6 1.2.1 Excercise 5 ................................... 9 1.3 Improvements, part II ................................. 9 1.3.1 Solution 5.2.2 – bad second approach..................... 14 1.4 Improvements, part III................................. 16 1.4.1 Excercise 6 ................................... 17 1.5 Improvements, part IV................................. 19 1.5.1 Excercise 6 – second approach ........................ 19 1.5.2 Excercise 7 ................................... 19 1.5.3 Excercise 8 ................................... 20 1.6 Improvements, part V ................................. 20 1.6.1 Excercise 9 ................................... 20 1.6.2 Excercise 10................................... 21 1.7 Other excercises .................................... 21 1.7.1 Excercise 11................................... 21 1.7.2 Excercise x ................................... 22 iii iv SPIS TREŚCI 1.7.3 Excercise x ................................... 22 1.7.4 Excercise x ..................................
    [Show full text]
  • History-Of-Microprocessors.Pdf
    HISTORY OF MICROPROCESSORS 1 Gursharan Singh Tatla [email protected] www.eazynotes.com CONTENTS Introduction 4-Bit Microprocessors 8-Bit Microprocessors 16-Bit Microprocessors 32-Bit Microprocessors 64-Bit Microprocessors 2 Gursharan Singh Tatla www.eazynotes.com [email protected] INTRODUCTION Fairchild Semiconductors (founded in 1957) invented the first IC in 1959. In 1968, Robert Noyce, Gordan Moore, Andrew Grove resigned from Fairchild Semiconductors. They founded their own company Intel (Integrated Electronics). Intel grown from 3 man start-up in 1968 to industrial giant by 1981. It had 20,000 employees and $188 million revenue. 3 Gursharan Singh Tatla www.eazynotes.com [email protected] 4-BIT MICROPROCESSORS 4 Gursharan Singh Tatla www.eazynotes.com [email protected] INTEL 4004 Introduced in 1971. It was the first microprocessor by Intel. It was a 4-bit µP. Its clock speed was 740KHz. It had 2,300 transistors. It could execute around 60,000 instructions per second. 5 Gursharan Singh Tatla www.eazynotes.com [email protected] INTEL 4040 Introduced in 1974. It was also 4-bit µP. 6 Gursharan Singh Tatla www.eazynotes.com [email protected] 8-BIT MICROPROCESSORS 7 Gursharan Singh Tatla www.eazynotes.com [email protected] INTEL 8008 Introduced in 1972. It was first 8-bit µP. Its clock speed was 500 KHz. Could execute 50,000 instructions per second. 8 Gursharan Singh Tatla www.eazynotes.com [email protected] INTEL 8080 Introduced in 1974. It was also 8-bit µP. Its clock speed was 2 MHz. It had 6,000 transistors. Was 10 times faster than 8008.
    [Show full text]
  • E-Content Material for Ii Msc Physics
    PERIYAR ARTS COLLEGE,CUDDALORE DEPARTMENT OF PHYSICS E-CONTENT MATERIAL FOR II MSC PHYSICS MICROPROCESSOR & MICROCONTROLLER (CODE: MPH 33) UNIT 1 (Part -1) ( Dr.R.Thilak Kumar, Assistant Professor of Physics, Periyar Arts College,Cuddalore-1) Introduction Digital computer: A programmable machine that processes binary data is called digital computer. It is traditionally represented by five components CPU (central processing unit), ALU (arithmetic logic unit) and Control unit, memory, input and output. Traditional block diagram of a computer and microprocessor are presented in Fig.1 and Fig.2 respectively. Fig.1 Block diagram of a computer Fig.2 Block diagram of a microprocessor Microprocessor as a CPU (MPU) With advent of integrated circuit technology, it became possible to build the CPU on a single chip, this came to be known as a microprocessor and the traditional block diagram is shown in fig.2 Basic and important terms used in microprocessor The microprocessor operates in binary digits 0 and 1, known as bits. Bit: Bit is an abbreviation for the term binary digit. A digit of the binary number or code is called bit. Nibble: The 4-bit (4 digit) binary number is called nibble. Byte: The 8-bit(8 digit) binary number is called byte. Word: The 16-bit (16 digit) binary number is called word. Double word: The 32-bit (32 digit) binary number is called double word. Hexadecimal number system: The hexadecimal number system has a base 16. The basic digits are 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F.
    [Show full text]
  • The 4-Bit Processors Intel 4040 Microprocessor
    Upendra Sharma 1 Upsharma.in The 4-bit processors Intel 4004 Microprocessor (1970) First microprocessor (single-chip IC processor) Clock rate 740 kHz 0.07 MIPS Bus width 4 bits (multiplexed address/data due to limited pins) PMOS Number of transistors 2,300 at 10 μm Addressable Memory 640 bytes Program Memory 4 KB One of the earliest Commercial Microprocessors Originally designed to be used in Busicom calculator Intel 4040 Microprocessor (1971) 4040 – CPU 4 MHz Clock Generator .185 MHz Clock Generator Crystal for 4004/4201A or 4040/4201A Introduced 1971 The 8-bit processors 8008 Microprocessor (1972) Introduced April 1, 1972 Clock rate 500 kHz (8008–1: 800 kHz) 0.05 MIPS Bus width 8 bits (multiplexed address/data due to limited pins) Enhancement load PMOS logic Number of transistors 3,500 at 10 μm Addressable memory 16 KB Typical in early 8-bit microcomputers, dumb terminals, general calculators, bottling machines Developed in tandem with 4004 Upendra Sharma 2 Upsharma.in 8080 Microprocessor (1974) Introduced April 1, 1974 Clock rate 2 MHz (very rare 8080B: 3 MHz) 0.29 MIPS Bus width 8 bits data, 16 bits address Enhancement load NMOS logic Number of transistors 4,500, 6 μm Assembly language downwards compatible with 8008. Addressable memory 64 KB Up to 10X the performance of the 8008 Used in the Altair 8800, Traffic light controller, cruise missile Required six support chips versus 20 for the 8008 8085 Microprocessor (1976) Introduced March 1976 Clock rate 3 MHz 0.37 MIPS Bus width 8 bits data, 16 bits address Depletion load NMOS logic Number of transistors 6,500 at 3 μm Binary compatible downwards with the 8080.
    [Show full text]
  • Microcomputer Digest V03n01
    HO PU-rEB DIGES-r Volume 3, Number 1 July, 1976 THE "SUPER 8080" MICROCOMPUTER MICRONOVA MICROCOMPUTER FAMILY Z-80, Zilog's first microcomputer, was As reported last month, Data General introduced at the California Computer Show Corp. has introduced a 16-bit microcomputer and includes all the logic circuits necessary family with the architecture, software and for building high performance microcomputer­ system performance of a NOVA minicomputer. based products with virtually no external The family ranges from chip sets to fully logic, and a minimum number of static or dy­ packaged computer systems. The microNOVA namic memories. family is based on a high-performance, Data Totally software compatible with Intel's General designed and manufactured 40-pin 8080A, the 40-pin N-channel, depletion mode, NMOS microprocessor. MOS microprocessor has a repertoire of 158 instructions and 17 internal registers inclu­ ding two real index registers. Additional features include built-in refresh for dynamic memory, 1.6 us machine cycle time, and a single 5V power supply and a single phase TTL clock. (cont'd on page 2) AMI 6800 PROTOTYPE CARD American Microsystems, Inc. has introduced a microprocessor prototyping board for hard­ ware and software evaluation of 6800-based microcomputer systems family in specific ap­ plications. The AMI 6800 Microprocessor Evaluation Board (EVK300) features a built-in programmer for the S6834 EPROM microcircuitry. This feature, not offered on competing prototyping systems, gives the AMI board greater capabil­ ity in developing prototype microcomputer This microprocessor features a 16-bit programs. (cont'd on page 2) word length, NOVA-compatible architecture, 32K main memory capacity and a sophisticated I/O enco.ding scheme capable of controlling NATIONAL STUNS INDUSTRY W/8080 multiple high-performance peripherals.
    [Show full text]
  • Microprocessors in U.S. Electrical Engineering Departments
    .DOCUMENT-atsimE ED 118 381 SE 020 178: _ AUTHOR Sloan, M. E:; . TITLE. ' -fficroprocelSors itlu44s;,Electrical Engineering Departments,19741.0735V, $ , -PUB DATE Jut 15 ,,, NOTE .20P.; Paper'Presented at theAnnual Meeting of the American Society .for Engine'ring Education (Colorado State Universitz, Ft, Collin Colorado, Jute 16 -19, 1975) - EDRS PRICE IMF -$0.83 HC- $1:61 Plus Postage DESCRIPTOIIS Cqmputers; *Computer Science; *Course Descriptions; Curric4um; Engineering; *Engiteering-Education; *Higher EduCation; Surveys ("IDENTIFIERS *Microprocessors ABSTRACT - Drawn from a survey of engineering departments known to be teaching microprgicessor courses, this paper:.Shows that the adoption of micropiocessors by Electrical Engineering Departments has been rapid compared with-their adoPtioriiof,minicomputers. The types of courses that are being taugpt can,be categorized as: surveys of microprocessors, intensive study of one microcomputer, inclusion of microprocessors in a general'courseeproject courses, .and specific applications courses. (41.H) I 4- 4 ***********************************************************4C********* * Dcuments acquired by ERIC include many informal unpublifhed * ,k,* materials not available from other sources. ERIC makes every effort * * to obtain ike best copy aiailable. Nevertheless, items ofMarginal * * reproducibility are,often encountered and this affects the qualitya,* * of the microfiche and hardcopy reproductions ERIC makesavailake * '4( via the ERIC Document Reproduction Service (EDRS). EDRS is not .* *
    [Show full text]
  • 309696 - MODULO DE MICROPROCESADORES & MICROCONTROLADORES HECTOR URIEL VILLAMIL GONZALEZ (Director Nacional)
    UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA – UNAD Escuela de Ciencias Básicas Tecnología e Ingeniería Contenido didáctico del curso Microprocesadores y Microcontroladores UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA ESCUELA DE CIENCIAS BASICAS TECNOLOGIA E INGENIERIA PROGRAMA DE INGENIERIA ELECTRONICA 309696 - MODULO DE MICROPROCESADORES & MICROCONTROLADORES HECTOR URIEL VILLAMIL GONZALEZ (Director Nacional) MIGUEL PINTO APARICIO Acreditador CHIQUINQUIRA Julio de 2009 UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA – UNAD Escuela de Ciencias Básicas Tecnología e Ingeniería Contenido didáctico del curso Microprocesadores y Microcontroladores INDICE DE CONTENIDO INTRODUCCIÓN .................................................................................................... ix UNIDAD 1.............................................................................................................. 10 CAPÍTULO 1: MICROPROCESADOR, PRINCIPIOS BASICOS ....................... 11 Lección 1: Invención y evolución histórica del Microprocesador. ................... 11 lección 2: Bases numéricas, bits y bytes. ....................................................... 22 lección 3: Estructura interna y funcionamiento. .............................................. 27 lección 4: Registros y segmentos. .................................................................. 39 lección 5: Modos de direccionamiento. .......................................................... 40 CAPÍTULO 2: FAMILIAS DE MICROPROCESADORES................................... 43 lección 1: Principales
    [Show full text]
  • Zilog Oral History Panel on the Founding of the Company and the Development of the Z80 Microprocessor
    Zilog Oral History Panel on the Founding of the Company and the Development of the Z80 Microprocessor Moderator: Michael Slater Panelists: Federico Faggin Masatoshi Shima Ralph Ungermann Recorded: April 27, 2007 Mountain View, California CHM Reference number: X4023.2007 © 2007 Computer History Museum Oral History of the Zilog Z80 Microprocessor Michael Slater: We have with us Ralph Ungermann, Federico Faggin, and Masatoshi Shima. I think we’ll start. We’ve had in the previous tapes [oral histories of the Intel 4004 and 8080 MPU projects recorded on April 26, 2007 at the museum] some information on the background of Federico and Shima- San, so we’ll start, Ralph, with you. Could you give us a brief summary of your background, your education, and what sort of jobs you had before coming to this project? Ralph Ungermann: Certainly. I grew up in Southern California. I’m a Berkeley graduate in Double E, and a masters degree in Computer Architecture from UC Irvine. I got out of college and spent a little time in the aerospace industry, and then moved towards the semiconductor business. I joined Collins Radio, a tremendously interesting company to work for. That was in the late ’60s, [the company was] completely networked around the whole world. Way ahead of its time. I left there and started to work at Western Digital, a [semiconductor] start-up in Southern California. We did communication chips. Custom communication chips. I left there and went to Intel, because I saw the microprocessor as being the next huge wave, and I was there at the Z80 introduction.
    [Show full text]
  • 17Uit3a3 - Microprocessor & Alp
    17UIT3A3 - MICROPROCESSOR & ALP K1 LEVEL UNIT - I 1.The CPU of a digital computer built into a single IC is called__________ a)processor b)multiprocessor c)microprocessor d)microprogramming ans:c)microprocessor 2. In 1985, Intel introduced a more powerful 32 bit microprocessor called___________ a)Intel 486 b)Intel 386 c)Intel 4040 d)Intel 8086 ans: a)Intel 386 3. ___________ was the first digital signal processing chip. a)Intel 2902 b)Intel 2920 c)Intel 2900 d)Intel 2930 ans: b)Intel 2920 4. Embedded control applications has two distinct areas of control named ___________ and __________ a)digital control, chip control b)process control, design control c)event control, data control c)connection control, block control ans: c)event control, data control 5. AMD produces ___________ family of bit-slice microprocessor components to built a bit-slice processor. a)2910 b)2900 c)2930 d)2901 ans: b)2900 6. In a computer having a microprogrammed control unit, the instruction of another computer can be executed is known as___________ a)microprogram b)microinstruction c)microprogramming d)emulation ans: d)emulation 7. Large cache is employed in ____________ a)CISC processor b)scalar processor c)RISC processor d)superscalar processor ans: c)RISC processor 8. CISC stands for __________ a)Complex Instruction Standard Computer b)Complex Integrated Set Computer c)Complex Instruction Set Computer d)Control Instruction Set Computer ans: c)Complex Instruction Set Computer 9. A superscalar processor contains ___________and executes more than one instruction per clock cycle. a)vector operands b)multiplepipelines c)control memory d)host processor ans: b)multiple pipelines 10.
    [Show full text]
  • Microcomputer Digest Sept. 1975
    ICROC PUTER Copyright © 1975 by Microcomputer Associates Inc. Printed in U.S.A. DIGEST Volume 2, Number 3 September, 1975 16-BIT PANAFACOM MICROPROCESSOR THE JOLT FROM MAl The latest entrant in the microprocessor Microcomputer Associates Inc. has announced arena, Panafacom Ltd. of Tokyo Japan, has un­ the world's lowest cost microcomputer system veiled a l6-bit microprocessor chip set fully yet available. The system is offered in kit supported by a series of microcomputer cards form as well as assembled. The heart of the and a resident hardware development system. JOLT system is MOS Technology's 6502 8-bit The PFL-16A is a three chip LSI microcom­ microprocessor. puter designed to offer users functions match­ The outstanding feature of the system is a ing those of a minicomputer in the form of a ROM mask programmed DEbug-MONitor (DEMON) which system component. (cont'd on page 2) provides instant software to the user after completion of the kit. 8080 IN CIRCUIT EMULATOR DEMON includes a unique feature found in no o~her microcomputer system, that is, a self­ Ramtek Corp. has announced an In Circuit adapting interface to any terminal speed from Emulator for the 8080 microprocessor. The MM 10 to 30 cps. A TTY 20 rnA current loop as well 80 (nicknamed the ICEBOX) directly replaces as an EIA interface is standard with the kit. the 8080 microprocessor in the user's system Other DEMON features include display-alter and allows the designer to examine, alter and CPU registers, display-alter memory, read/ control the 8080 system.
    [Show full text]