Floating-Point Package for Intel 8008 and 8080 Microprocessors

Total Page:16

File Type:pdf, Size:1020Kb

Floating-Point Package for Intel 8008 and 8080 Microprocessors UCRL-51940 FLOATING-POINT PACKAGE FOR INTEL 8008 AND 8080 MICROPROCESSORS Michael D. Maples October 24, 1975 Prepared for U.S. Energy Research& Development Administration under contract No. W-7405-Eng-48 I_AV~=IENCE I_IVEFIMORE I.ABOFIATOFIY University ol Calilomia ~ Livermore ~ NOTICE .sponsored by tht: United $~ates G~ven~menl.Neilhe~ the United States nor the United ~tates I’:n,~rgy of their employees,IIOr lilly of their eorltl’ilctclrs~ warranty~ express t~r implied, or asstltlleS ~t]y legld liability or responsihilit y fnr the accuracy, apparatus, product or ])rc)eess disclosed, represents that its rise would IIt~l illl’r liege privlttely-owned rights." Printed in the United States of America Avai.] able from National Technical. information Service U.S. Department of Commerce 5285 Port Royal Road Springfield, Virginia 22151 Price: Printed Copy $ *; Microfiche $2.25 NTIS ""Pages _Sellin_.g Price 1-50 $4.00 51-150 $5.45 151-325 $7.60 326-500 $10.60 501.-1000 $13.60 DISCI.AlMBR This documeut was prepared as an account of work sponsored by an agency of the United States Gnvernment.Neither the United States Governmentnor the University of California nor any of their employees,makes any warranty, express or implied, or assumesany legal liability or responsibility for the accuracy, complete.aess, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use wouldnot infrioge privately ownedrights. Refarenceherein to any specific commercialproduct, process, or service by trade name, trademark, manufacturer, or otherwise, does not necessarily constitute or imply its endorsement, recommendation,or favoring by the United States Govermnentor the University of California. The views and opinions of attthors expressed herein do not necessarily state or reflect those of the United States Goveromentor the University of California, and shall not be used for advertising or product endorsementpurposes. This report has been reproduced directly from the best available copy. Available to DOEand DOlt contractors from the Office of Scientific aud TechnicalInformation 1’.O. I~ox 62, OakRidge, TN3783~ Prices available from (615) 576-8401,FIB 626-8401 Availableto the public from the National Technical Informalion Service U.S. Department of Commerce 5285 Port RoyalRd., Springfield, VA22161 Workperformed under fl~e auspices of the U.S. Departlnent of Energyby l.awrence LivermoreNational ! .aboratot3, under Contract W-7405-ENG-48. Distribution Category UC-32 LAWRENCE LIVERMORE LABORATORY Universityof Califomia.."Livermore,Ca/#ornia 94550 UCRL-51940 FLOATING-POINT PACKAGE FOR INTEL 8008 AND 8080 MICROPROCESSORS Michael D. Maples MS. Date: October 24, 1975 Contents Abstract Introc]uc tion ............................... 1 Selection and Use of Operations ..................... 2 Ac knowledgmen t s ............................. 7 Appendi’~. Source Listing of Float:iug-Po[nt Package .......... A-I -iii- FLOATING-I’OINT PACKAGEFOR INTEL 8008 AND 8080 MICROPROCESSORS Abstract The Lawrence Livermore the mathematical operations -- add, I,aboratory has used a scientific- subtract, multiply, divide, and notation mathematics package that square root -- range from 3 to 77 ms. performs floating-point arithmetic Instructions for using the floating- with Intel 8008 and 8080 micro- point package and a source listing processors. The execution times for of it are included. Introduction For the last two years, Lawrence microcomputers, but this need not be Livermore Laboratory has used a necessary. The appropriate ODT calls scientific-notation mathematics (6 or 7) in the I/0 routines can package (f].oating-point package) with easily be placed by assembly language the Intel 8008 and 8080 micropro- equivalents. cessors.* This package allows addition, subtraction, multiplication, Table i. Worst-case execution times division, and square root operations. for the 8080 microprocessor using a 0.5-~s clock with Table i shows the execution times the package in programmable for these operations. The program read-only memory (PROM). listing of the complete 8080 floating- point package is in the Appendix. Execution times The package uses some I/O calls from Operation (ms) an octal debug routine (ODT) that has become a standard part of all inhouse Add 3 *Reference to a company or product Subtract 3 name does not imply approval or Multiply recommendation of the product by the 7 University of California or the Divide 8 U.S. Energy Research & Development Square root Administration to the exclusion of 77 others that may be suitable. -i- The floating-point package uses experiments with accuracy require- 24 bits of mantissa for approximately ments of one part per hundred 7-1/2 digits of accuracy in thousand. expressing numeric data. Obviously, this decreases rapidly when complex The package also indicates under- iterative computations are used. flows and overflows by placing zeros Nevertheless, the package is function- in the mantissa and a I00 (octal) ing quite satisfactorily in many the exponent word. Selection and Use of Operations All registers described in this intermediate steps are to be ¢al- paper point to four-word internal culated. Then do a call to the INPUT mathematical storage areas unless routine that does the appropriate otherwise stated. Also, before per- conversion (see Table 2). forming any mathematical operation, The resulting floating-point number all needed operands must be placed in has three 8-bit words of mantissa and the same random access memory (RAM) a fourth word that contains 6 bits of along with any needed scratch areas exponent, 1 bit for mantissa sign, (i.e., all must reside in the same and 1 bit for exponent sign (see page of ILAM). Fig. i). Negative mantissa are The first problem is how to get indicated only by the sign bit as the the decimal numbers into the correct mantissa itself is in sign-magnitude format for use in the floating-point form. But the negative exponents are package. The routine INPUT performs in twos complement form. the conversion for all teletypewriter input. Also, it easily adapts to If an addition (LADD) is wanted, converting any BCD numeric inputs place the pointer to one addend in from either digital pane], meters the L-register, the pointer to the (DPM) or thumbwheel switches. To use other addend in the B-register, and a INPUT, set the L-register to point pointer in the C-register. The at the location in RAM ~ere the C-register points to a four-word result of the conversion is to be scratch area used during the addition placed and set the C-register to point process. The result is pointed to by to another location in RAM where the L-register (see Table 3). -2- Table 2. Program for using INPUT routine. The scratch area is ].7 (octal) bytes long but the converted number is only 4 bytes long. Program Comments MVI II, SCRPG ;Set H to match scratch page (RAM). MVI L, STWD ;Store floating-point number starting ;at STWD. MVI C, SCR ;Scratch area. CALL INPUT Most The subtraction (LSUB) routine STWD s~gn~ficant is very similar to the addition word routine. The L-register holds the STWD " 1 ~ pointer to the minuend and the Least B-register holds the pointer to the I’1 I i I [ J j significantsubtrahend. The C-register once again word 765432 10 is used as a four-word scratch area, STWD~31’II I I I l lJ and the result is placed in the area pointed to by the L-register, ~~Exponenl" sign~ I = negative destroying the previous data residing Mantissa sign~ 1 = negatiSe there (see Table 4). If a multiplication (LMUL) wanted, again use the L-, B-~ and C-registers. The pointer for the multiplicand resides in the L-register, Fig. i. Floating-point word format. This format all.ows repre- the pointer for the multiplier in the sentation of numbers from B-register and the pointer to the ±6.46235 * 10-27 to ±4.61168 * ].018. result in the C-register (see Table 5). -3- Table 3. Assembly language setup for addition. Program Comments ~I H, SCRPG ;Set H to scratch page (I~M). MVI L, ADDI ;Pointer four-word addend and final ;result. MVI B, ADD2 ;Pointer 2nd four-word addend. MVI C, SLR ;Four-word scratch area. Call LADD ;Turn control over to addition ;routines. Table 4. Assembly language setup for subtraction. Program Comments ~I H, SCRPG ;Set H to match scratch page (RAM). ~I L, SUB1 ;Pointer to four-word minuend and ;final result. MVI B, SUB2 ;Pointer to four-word subtrahend. MVl C, SCR ;Four-word scratch area. Call LSUB ;Turn control over to subtraction ;routines. -4- Table 5. Assembly language setup for multiplication. Program Comments :~IV~.H, SCRPG ;Scratch page pointer (RAM). MVI L, MLCAN ;Pointer to multplicant. ,~FVI B, Mlplr ;Pointer to multiplier. MVI C, Rslt ;Pointer to result. CALL LMUL ;Turn control over to multiply ;routine. Division (LDIV) like multiplica- number pointed to in the L-register tion uses the C-register to hold the to its ASCII equivalent and types it pointer to the result (quotient). out on the teletypewriter. This The L-register pointer refers to routine uses a 17 octal-word scratch dividend and the B-register pointer area pointed to by the C-register refers to the divisor (see Table 6). (see Table 8). The final data The square root routine (DSQRT) printed in scientific notation. The uses the L-register to point to the output routine like the INPUT routine number to be converted, the B-register is easily modified to output its data to point to the final converted to an internal (memory) register for number, and the C-register to point display on an LED display. to a 16 octal-word scratch area (see Table 7). Table 9 gives a simple program The final routine is the output that allows the user to check out routine (CVRT).
Recommended publications
  • Computer Organization and Architecture Designing for Performance Ninth Edition
    COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION William Stallings Boston Columbus Indianapolis New York San Francisco Upper Saddle River Amsterdam Cape Town Dubai London Madrid Milan Munich Paris Montréal Toronto Delhi Mexico City São Paulo Sydney Hong Kong Seoul Singapore Taipei Tokyo Editorial Director: Marcia Horton Designer: Bruce Kenselaar Executive Editor: Tracy Dunkelberger Manager, Visual Research: Karen Sanatar Associate Editor: Carole Snyder Manager, Rights and Permissions: Mike Joyce Director of Marketing: Patrice Jones Text Permission Coordinator: Jen Roach Marketing Manager: Yez Alayan Cover Art: Charles Bowman/Robert Harding Marketing Coordinator: Kathryn Ferranti Lead Media Project Manager: Daniel Sandin Marketing Assistant: Emma Snider Full-Service Project Management: Shiny Rajesh/ Director of Production: Vince O’Brien Integra Software Services Pvt. Ltd. Managing Editor: Jeff Holcomb Composition: Integra Software Services Pvt. Ltd. Production Project Manager: Kayla Smith-Tarbox Printer/Binder: Edward Brothers Production Editor: Pat Brown Cover Printer: Lehigh-Phoenix Color/Hagerstown Manufacturing Buyer: Pat Brown Text Font: Times Ten-Roman Creative Director: Jayne Conte Credits: Figure 2.14: reprinted with permission from The Computer Language Company, Inc. Figure 17.10: Buyya, Rajkumar, High-Performance Cluster Computing: Architectures and Systems, Vol I, 1st edition, ©1999. Reprinted and Electronically reproduced by permission of Pearson Education, Inc. Upper Saddle River, New Jersey, Figure 17.11: Reprinted with permission from Ethernet Alliance. Credits and acknowledgments borrowed from other sources and reproduced, with permission, in this textbook appear on the appropriate page within text. Copyright © 2013, 2010, 2006 by Pearson Education, Inc., publishing as Prentice Hall. All rights reserved. Manufactured in the United States of America.
    [Show full text]
  • Lecture 1: Course Introduction G Course Organization G Historical Overview G Computer Organization G Why the MC68000? G Why Assembly Language?
    Lecture 1: Course introduction g Course organization g Historical overview g Computer organization g Why the MC68000? g Why assembly language? Microprocessor-based System Design 1 Ricardo Gutierrez-Osuna Wright State University Course organization g Grading Instructor n Exams Ricardo Gutierrez-Osuna g 1 midterm and 1 final Office: 401 Russ n Homework Tel:775-5120 g 4 problem sets (not graded) [email protected] n Quizzes http://www.cs.wright.edu/~rgutier g Biweekly Office hours: TBA n Laboratories g 5 Labs Teaching Assistant g Grading scheme Mohammed Tabrez Office: 339 Russ [email protected] Weight (%) Office hours: TBA Quizes 20 Laboratory 40 Midterm 20 Final Exam 20 Microprocessor-based System Design 2 Ricardo Gutierrez-Osuna Wright State University Course outline g Module I: Programming (8 lectures) g MC68000 architecture (2) g Assembly language (5) n Instruction and addressing modes (2) n Program control (1) n Subroutines (2) g C language (1) g Module II: Peripherals (9) g Exception processing (1) g Devices (6) n PI/T timer (2) n PI/T parallel port (2) n DUART serial port (1) g Memory and I/O interface (1) g Address decoding (2) Microprocessor-based System Design 3 Ricardo Gutierrez-Osuna Wright State University Brief history of computers GENERATION FEATURES MILESTONES YEAR NOTES Asia Minor, Abacus 3000BC Only replaced by paper and pencil Mech., Blaise Pascal, Pascaline 1642 Decimal addition (8 decimal figs) Early machines Electro- Charles Babbage Differential Engine 1823 Steam powered (3000BC-1945) mech. Herman Hollerith,
    [Show full text]
  • The Birth, Evolution and Future of Microprocessor
    The Birth, Evolution and Future of Microprocessor Swetha Kogatam Computer Science Department San Jose State University San Jose, CA 95192 408-924-1000 [email protected] ABSTRACT timed sequence through the bus system to output devices such as The world's first microprocessor, the 4004, was co-developed by CRT Screens, networks, or printers. In some cases, the terms Busicom, a Japanese manufacturer of calculators, and Intel, a U.S. 'CPU' and 'microprocessor' are used interchangeably to denote the manufacturer of semiconductors. The basic architecture of 4004 same device. was developed in August 1969; a concrete plan for the 4004 The different ways in which microprocessors are categorized are: system was finalized in December 1969; and the first microprocessor was successfully developed in March 1971. a) CISC (Complex Instruction Set Computers) Microprocessors, which became the "technology to open up a new b) RISC (Reduced Instruction Set Computers) era," brought two outstanding impacts, "power of intelligence" and "power of computing". First, microprocessors opened up a new a) VLIW(Very Long Instruction Word Computers) "era of programming" through replacing with software, the b) Super scalar processors hardwired logic based on IC's of the former "era of logic". At the same time, microprocessors allowed young engineers access to "power of computing" for the creative development of personal 2. BIRTH OF THE MICROPROCESSOR computers and computer games, which in turn led to growth in the In 1970, Intel introduced the first dynamic RAM, which increased software industry, and paved the way to the development of high- IC memory by a factor of four.
    [Show full text]
  • Professor Won Woo Ro, School of Electrical and Electronic Engineering Yonsei University the Intel® 4004 Microprocessor, Introdu
    Professor Won Woo Ro, School of Electrical and Electronic Engineering Yonsei University The 1st Microprocessor The Intel® 4004 microprocessor, introduced in November 1971 An electronics revolution that changed our world. There were no customer‐ programmable microprocessors on the market before the 4004. It propelled software into the limelight as a key player in the world of digital electronics design. 4004 Microprocessor Display at New Intel Museum A Japanese calculator maker (Busicom) asked to design: A set of 12 custom logic chips for a line of programmable calculators. Marcian E. "Ted" Hoff Recognized the integrated circuit technology (of the day) had advanced enough to build a single chip, general purpose computer. Federico Faggin to turn Hoff's vision into a silicon reality. (In less than one year, Faggin and his team delivered the 4004, which was introduced in November, 1971.) The world's first microprocessor application was this Busicom calculator. (sold about 100,000 calculators.) Measuring 1/8 inch wide by 1/6 inch long, consisting of 2,300 transistors, Intel’s 4004 microprocessor had as much computing power as the first electronic computer, ENIAC. 2 inch 4004 and 12 inch Core™2 Duo wafer ENIAC, built in 1946, filled 3000‐cubic‐ feet of space and contained 18,000 vacuum tubes. The 4004 microprocessor could execute 60,000 operations per second Running frequency: 108 KHz Founders wanted to name their new company Moore Noyce. However the name sounds very much similar to “more noise”. "Only the paranoid survive". Moore received a B.S. degree in Chemistry from the University of California, Berkeley in 1950 and a Ph.D.
    [Show full text]
  • Computer Organization EECC 550 • Introduction: Modern Computer Design Levels, Components, Technology Trends, Register Transfer Week 1 Notation (RTN)
    Computer Organization EECC 550 • Introduction: Modern Computer Design Levels, Components, Technology Trends, Register Transfer Week 1 Notation (RTN). [Chapters 1, 2] • Instruction Set Architecture (ISA) Characteristics and Classifications: CISC Vs. RISC. [Chapter 2] Week 2 • MIPS: An Example RISC ISA. Syntax, Instruction Formats, Addressing Modes, Encoding & Examples. [Chapter 2] • Central Processor Unit (CPU) & Computer System Performance Measures. [Chapter 4] Week 3 • CPU Organization: Datapath & Control Unit Design. [Chapter 5] Week 4 – MIPS Single Cycle Datapath & Control Unit Design. – MIPS Multicycle Datapath and Finite State Machine Control Unit Design. Week 5 • Microprogrammed Control Unit Design. [Chapter 5] – Microprogramming Project Week 6 • Midterm Review and Midterm Exam Week 7 • CPU Pipelining. [Chapter 6] • The Memory Hierarchy: Cache Design & Performance. [Chapter 7] Week 8 • The Memory Hierarchy: Main & Virtual Memory. [Chapter 7] Week 9 • Input/Output Organization & System Performance Evaluation. [Chapter 8] Week 10 • Computer Arithmetic & ALU Design. [Chapter 3] If time permits. Week 11 • Final Exam. EECC550 - Shaaban #1 Lec # 1 Winter 2005 11-29-2005 Computing System History/Trends + Instruction Set Architecture (ISA) Fundamentals • Computing Element Choices: – Computing Element Programmability – Spatial vs. Temporal Computing – Main Processor Types/Applications • General Purpose Processor Generations • The Von Neumann Computer Model • CPU Organization (Design) • Recent Trends in Computer Design/performance • Hierarchy
    [Show full text]
  • Microprocessors in the 1970'S
    Part II 1970's -- The Altair/Apple Era. 3/1 3/2 Part II 1970’s -- The Altair/Apple era Figure 3.1: A graphical history of personal computers in the 1970’s, the MITS Altair and Apple Computer era. Microprocessors in the 1970’s 3/3 Figure 3.2: Andrew S. Grove, Robert N. Noyce and Gordon E. Moore. Figure 3.3: Marcian E. “Ted” Hoff. Photographs are courtesy of Intel Corporation. 3/4 Part II 1970’s -- The Altair/Apple era Figure 3.4: The Intel MCS-4 (Micro Computer System 4) basic system. Figure 3.5: A photomicrograph of the Intel 4004 microprocessor. Photographs are courtesy of Intel Corporation. Chapter 3 Microprocessors in the 1970's The creation of the transistor in 1947 and the development of the integrated circuit in 1958/59, is the technology that formed the basis for the microprocessor. Initially the technology only enabled a restricted number of components on a single chip. However this changed significantly in the following years. The technology evolved from Small Scale Integration (SSI) in the early 1960's to Medium Scale Integration (MSI) with a few hundred components in the mid 1960's. By the late 1960's LSI (Large Scale Integration) chips with thousands of components had occurred. This rapid increase in the number of components in an integrated circuit led to what became known as Moore’s Law. The concept of this law was described by Gordon Moore in an article entitled “Cramming More Components Onto Integrated Circuits” in the April 1965 issue of Electronics magazine [338].
    [Show full text]
  • Computer Organization EECC 550 • Introduction: Modern Computer Design Levels, Components, Technology Trends, Register Transfer Week 1 Notation (RTN)
    Computer Organization EECC 550 • Introduction: Modern Computer Design Levels, Components, Technology Trends, Register Transfer Week 1 Notation (RTN). [Chapters 1, 2] • Instruction Set Architecture (ISA) Characteristics and Classifications: CISC Vs. RISC. [Chapter 2] Week 2 • MIPS: An Example RISC ISA. Syntax, Instruction Formats, Addressing Modes, Encoding & Examples. [Chapter 2] • Central Processor Unit (CPU) & Computer System Performance Measures. [Chapter 1] 3rd Edition Ch. 4 Week 3 • CPU Organization: Datapath & Control Unit Design. [Chapter 4] 3rd Edition Ch. 5 Week 4 – MIPS Single Cycle Datapath & Control Unit Design. – MIPS Multicycle Datapath and Finite State Machine Control Unit Design. 3rd Edition Ch. 5 (not in 4th) Week 5 • Microprogrammed Control Unit Design. 3rd Edition Ch. 5 (not in 4th Edition) – Microprogramming Project Week 6 • Midterm Review and Midterm Exam Week 7 • CPU Pipelining. [Chapter 4] 3rd Edition Ch. 6 • The Memory Hierarchy: Cache Design & Performance. [Chapter 5] Week 8 3rd Edition Ch. 7 • The Memory Hierarchy: Main & Virtual Memory. [Chapter 5] Week 9 • Input/Output Organization & System Performance Evaluation. [Chapter 7] 3rd Edition Ch. 8 Week 10 • Computer Arithmetic & ALU Design. [Chapter 3] If time permits. Week 11 • Final Exam. EECC550 - Shaaban #1 Lec # 1 Winter 2011 11-29-2011 Computing System History/Trends + Instruction Set Architecture (ISA) Fundamentals • Computing Element Choices: – Computing Element Programmability – Spatial vs. Temporal Computing – Main Processor Types/Applications • General
    [Show full text]
  • Introduction to Cpu
    microprocessors and microcontrollers - sadri 1 INTRODUCTION TO CPU Mohammad Sadegh Sadri Session 2 Microprocessor Course Isfahan University of Technology Sep., Oct., 2010 microprocessors and microcontrollers - sadri 2 Agenda • Review of the first session • A tour of silicon world! • Basic definition of CPU • Von Neumann Architecture • Example: Basic ARM7 Architecture • A brief detailed explanation of ARM7 Architecture • Hardvard Architecture • Example: TMS320C25 DSP microprocessors and microcontrollers - sadri 3 Agenda (2) • History of CPUs • 4004 • TMS1000 • 8080 • Z80 • Am2901 • 8051 • PIC16 microprocessors and microcontrollers - sadri 4 Von Neumann Architecture • Same Memory • Program • Data • Single Bus microprocessors and microcontrollers - sadri 5 Sample : ARM7T CPU microprocessors and microcontrollers - sadri 6 Harvard Architecture • Separate memories for program and data microprocessors and microcontrollers - sadri 7 TMS320C25 DSP microprocessors and microcontrollers - sadri 8 Silicon Market Revenue Rank Rank Country of 2009/2008 Company (million Market share 2009 2008 origin changes $ USD) Intel 11 USA 32 410 -4.0% 14.1% Corporation Samsung 22 South Korea 17 496 +3.5% 7.6% Electronics Toshiba 33Semiconduc Japan 10 319 -6.9% 4.5% tors Texas 44 USA 9 617 -12.6% 4.2% Instruments STMicroelec 55 FranceItaly 8 510 -17.6% 3.7% tronics 68Qualcomm USA 6 409 -1.1% 2.8% 79Hynix South Korea 6 246 +3.7% 2.7% 812AMD USA 5 207 -4.6% 2.3% Renesas 96 Japan 5 153 -26.6% 2.2% Technology 10 7 Sony Japan 4 468 -35.7% 1.9% microprocessors and microcontrollers
    [Show full text]
  • Module I What Is Microprocessor? Evolution of Microprocessors
    Module I Evolution of microprocessors, 8086 Microprocessor - Architecture and signals, Memory organisation, Minimum and maximum mode of operation, Minimum mode Timing Diagram. Comparison of 8086 and 8088. What is Microprocessor? A single chip processor is called microprocessor. It is also called Central Processing Unit (CPU). It is the brain of a computer system. It is also used in many electronic devices. Microprocessor is a semiconductor device consisting of electronic logic circuits manufactured by techniques such as large scale integration (LSI) or very large scale integration. It is capable of performing computing functions and making decisions to change the sequence of program execution. A computer built with a microprocessor is called micro computer. Examples Intel 8086, Intel 80286, Pentium II A microprocessor in which most instructions operate on n-bit data and its registers are of n-bit size is said to be a n-bit microprocessor. Evolution of microprocessors 4-bit Microprocessors The first microprocessor was introduced in 1971 by Intel Corp. It was named Intel 4004 as it was a 4 bit processor. It was a processor on a single chip. It could perform simple arithmetic and logic operations such as addition, subtraction, boolean AND and boolean OR. Intel introduced the enhanced version of 4004, the 4040. 8-bit Microprocessors The first 8 bit microprocessor which could perform arithmetic and logic operations on 8 bit words was introduced in 1973 again by Intel. This was Intel 8008 and was later followed by an improved version, Intel 8088. 16-bit Microprocessors The 8-bit processors were followed by 16 bit processors.
    [Show full text]
  • MICROPROCESSORS I-INTRODUCTION: Microprocessors
    MICROPROCESSORS I-INTRODUCTION: Microprocessors are regarded as one of the most important devices in our everyday machines called computers. Before we start, we need to understand what exactly microprocessors are and their appropriate implementations. Microprocessor is an electronic circuit that functions as the central processing unit (CPU) of a computer, providing computational control. Microprocessors are also used in other advanced electronic systems, such as computer printers, automobiles, and jet airliners Typical microprocessors incorporate arithmetic and logic functional units as well as the associated control logic, instruction processing circuitry, 1 and a portion of the memory hierarchy. Portions of the interface logic for the input/output (I/O) and memory subsystems may also be infused, allowing cheaper overall systems. While many microprocessors and single- chip designs, some high-performance designs rely on a few chips to provide multiple functional units and relatively large caches. (Really, Mark, p. 49) When combined with other integrated circuits that provide storage for data and programs, often on a single semiconductor base to form a chip, the microprocessor becomes the heart of a small computer, or microcomputer. Microprocessors are classified by the semiconductor technology of their design (TTL, transistor-transistor logic; CMOS, complementary-metal-oxide semiconductor; or ECL, emitter-coupled logic), by the width of the data format (4-bit, 8-bit, 16-bit, 32-bit, or 64-bit) they process; and by their instruction set (CISC, complex-instruction-set computer, or RISC, reduced- instruction-set computer; see RISC processor). TTL technology is most commonly used, while CMOS is favored for portable computers and other battery-powered devices because of its low power consumption.
    [Show full text]
  • Intel I3 Processor
    Intel I3 Processor Arpit Section- E2E43, roll no.-A34, Reg. no.-11106840 School of Electronics and communication Lovely professional university, phagwara, Punjab Abstract-This term paper on Intel i3 processor is version of their processors are still considered the to define the role played by the Intel processor inin best. Some of the famous processor are from the the field of data manipulation and graphic display. latest group of the family ‗core‘. Intel core is the This term paper present report on the architecture processors i3 family which is famous for its latest of i3 processor made by Intel and improvement in revolutionary structure and integrated architecture it from predecessor. which also provide the advantage of the parallel computing. It‘s also wonderful in providing the 1-1- Introduction users with the excellent graphical user interfaces. Intel was founded in 1968 and its first product was Intel 3101 produced in 1969, Intel first product was world‘s‘s first solid state memory device with 16 x 4-bit SRAM. Intel 1103 came in 1970 was world first DRAM product with 1K-bit PMOS and it was used in HP 9800 series computers. By 1972, it became world bestselling memory chip, defeating Magnetic memory The Intel i3 processor with Intel HD Graphics offers an unparalleled computing Experience. This Intel MCS Family revolutionary new architecture allows for new MCS Family Intel CPU levels of intelligent performance and advanced media and graphics features — all while being MCS-4 4004 energy efficient. The processor include an MCS-40 4040 Integrated Memory Controller (IMC) making them monolithic processors.
    [Show full text]
  • 8 Bit Parallel Central Processor Unit
    m(S ' ~8 Microcomputer Set NOVEMBER 1973 REV. 4 8008 Second Printing 8 Bit Parallel Central Processor Unit USERS MANUAL C Intel Corp. 197J The MCS-S™ parallel 8-bit microcomputer set is de­ signed for efficient handling of large volumes of data. It has interrupt capability, operates synchronously or asynchronously with external memory, and executes subroutines nested up to seven levels. The 8008 CPU, InTEL heart of the MCS-8, replaces 125 TTL packs. With it you can easi Iy address up to 16k 8-bit words of ROM, SUPPORT RAM or shift registers. Using bank switching techniques, you can extend its memory indefinitely. mdKES The PL/M™ High Level Language is an easy-to-Iearn, systems oriented language derived from IBM's PL/I by Intel for programming the MCS-8 and future 8-bit micro­ SYSTEm computers. It gives the microcomputer programmer the same high level language advantages currently available BUilDInG in mini and large computers. By actual tests, PL/M pro­ gramming and debugging requires less than 10% of the time needed for assembly language. The PL/M compiler EdSY. is written in Fortran IV for time-share, and needs little or no alteration for most general purpose computers. Inteliec™S Development Systems provide flexible, inex­ pensive, and simplified methods for OEM product de­ velopment. They use RAM for program storage instead of ROM, making program loading and modification easier. The I ntellec features are: • Display and Control Console • Standard DMA channel • Standard software package • Expandable memory and I/O • TTY interface • PROM programming capability "The Intellec control panel is used for system monitoring and debugging.
    [Show full text]