Presented by: Chi Yan Hung

Slides:



Advertisements
Similar presentations
8085 Architecture & Its Assembly language programming
Advertisements

Parul Polytechnic Institute
Parul Polytechnic Institute Parul Polytechnic Institute Subject Code : Name Of Subject : Microprocessor and assembly language programming Name.
CSC 3650 Introduction to Computer Architecture Time: 3:30 to 6:30Meeting Days: WLocation: Oxendine 1237B Textbook: Essentials of Computer Architecture,
Processor System Architecture
TK 2633 Microprocessor & Interfacing
1 ICS 51 Introductory Computer Organization Fall 2006 updated: Oct. 2, 2006.
Room: E-3-31 Phone: Dr Masri Ayob TK 2633 Microprocessor & Interfacing Lecture 1: Introduction to 8085 Assembly Language.
By Tien Phung CS 147 Dr. Sin-Min Lee. High-level Languages Assembly Languages Machine Languages.
TK 2633 Microprocessor & Interfacing
Unit-1 PREPARED BY: PROF. HARISH I RATHOD COMPUTER ENGINEERING DEPARTMENT GUJARAT POWER ENGINEERING & RESEARCH INSTITUTE Advance Processor.
Parul Polytechnic Institute Parul Polytechnic Institute Subject Code : Name Of Subject : Microprocessor and assembly language programming Name.
INSTRUCTION SET OF MICROPROCESSOR 8085
UNDERSTANDING ASSEMBLY LANGUAGE.
Parul Polytechnic Institute Subject Code : Name Of Subject : Microprocessor and assembly language programming Name of Unit : Introduction to Microprossor.
Electrical Engineering Department Engineering College Prince Sattam bin Abdul Aziz University Text Book: - Triebel and Singh, "The 8088 and 8086 Microprocessors",
Computer Architecture Lecture 13 – part 2 by Engineer A. Lecturer Aymen Hasan AlAwady 7/4/2014 University of Kufa - Information Technology Research and.
Lecture 14 Today’s topics MARIE Architecture Registers Buses
Computer Architecture and Organization
Instruction Set Architectures
Microprocessor Dr. Rabie A. Ramadan Al-Azhar University Lecture 8.
COMPUTER ORGANIZATION AND ASSEMBLY LANGUAGE Lecture 21 & 22 Processor Organization Register Organization Course Instructor: Engr. Aisha Danish.
Computer Architecture Lecture 4 by Engineer A. Lecturer Aymen Hasan AlAwady 17/11/2013 University of Kufa - Informatics Center for Research and Rehabilitation.
Assembly Language Programming of 8085 BY Prof. U. V. THETE Dept. of Computer Science YMA.
ECE 447 Fall 2009 Lecture 4: TI MSP430 Architecture and Instruction Set.
The 8085 Microprocessor Architecture. What 8085 meant for? 80 - year of invention bit processor 5 - uses +5V for power.
1 Basic Processor Architecture. 2 Building Blocks of Processor Systems CPU.
8085 INTERNAL ARCHITECTURE.  Upon completing this topic, you should be able to: State all the register available in the 8085 microprocessor and explain.
نظام المحاضرات الالكترونينظام المحاضرات الالكتروني 8085 Instruction Set logic group. Branch group. Stack memory and machine control. Addressing modes.
The 8085A is a general-purpose microprocessor with low hardware overhead requirements. Within the 8085A are contained the functions of clock generation,
8085 Microprocessor Architecture
Seminar On 8085 microprocessor
Gursharan Singh Tatla INSTRUCTION SET OF 8085 Gursharan Singh Tatla Gursharan Singh Tatla
Unit 1 Instruction set M.Brindha AP/EIE
BLOCK DIAGRAM OF INTEL 8085.
The 8085 Microprocessor Architecture
Part of the Assembler Language Programmers Toolbox
Gunjeet Kaur Dronacharya Group of institutions
Assembly Language Programming of 8085
Microprocessor T. Y. B. Sc..
Detailed Review of the 8085 Instruction Set.
3.Instruction Set of 8085 Consists of 74 operation codes, e.g. MOV
1. Introduction A microprocessor executes instructions given by the user Instructions should be in a language known to the microprocessor Microprocessor.
The 8085 Microprocessor Architecture
8086 Microprocessor.
Introduction of microprocessor
Introduction to 8085 Instructions
TAO1221 COMPUTER ARCHITECTURE AND ORGANIZATION LAB 3 & 4 Part 2
TAO1221 COMPUTER ARCHITECTURE AND ORGANIZATION LAB 3 & 4 Part 1
Basic Microprocessor Architecture
A Closer Look at Instruction Set Architectures: Expanding Opcodes
8085 microprocessor.
The 8085 Microprocessor Architecture
An Introduction to Microprocessor Architecture using intel 8085 as a classic processor
Processor Organization and Architecture
EMT 245: lecture 4: assembly language
Introduction to Assembly Language
Number Representations and Basic Processor Architecture
R.RAJKUMAR DEPARTMENT OF CSE
Detailed Review of the 8085 Instruction Set.
Prepared by Kenan BOZDAŞ
Architecture & Support Components
Chapter 8 Central Processing Unit
INSTRUCTION SET OF 8085.
8085 MICROPROCESSOR 8085 CPU Registers and Status Flags S Z AC P C A B
The 8085 Microprocessor Architecture
8051 ASSEMBLY LANGUAGE PROGRAMMING
Computer Operation 6/22/2019.
Computer Organization
Presentation transcript:

Presented by: Chi Yan Hung Relatively Simple CPU and 8085 microprocessor Instruction Set Architecture Presented by: Chi Yan Hung Class: Cs 147 - sec 2 Fall 2001 Prof: Sin-Min Lee

Topics to cover Relatively Simple Instruction Set Architecture 3.4. Relatively Simple Instruction Set Architecture 3.5. 8085 Microprocessor Instruction Set Architecture Analyzing the 8085 Instruction Set Architecture 3.6. Summary

Relatively Simple microprocessors, or CPU 3.4. Relatively Simple microprocessors, or CPU · Designed as an instructional aid and draws its features from several real microprocessors · Too limited to run anything as complex as personal computer · It has about the right level of complexity to control a microwave oven or other consumer appliance

Instruction Set Architecture (ISA) · Memory Model · Registers · Instruction set

Memory Model · This microprocessor can access 64K ( = 216 ) bytes of memory · Each byte has 8 bits, therefore it can access 64K  8 bits of memory · 64K of memory is the maximum limit, sometimes a system based on this CPU can have less memory · Use memory to map I/O Same instructions to use for accessing I/O devices and memory

Registers Accumulator (AC), is an 8-bit general purpose register Register R, is an 8-bit general purpose register. It supplies the second operand and also it can be use to store data that the AC will soon need to access. Flag Z, is an 1-bit zero flag. Z is set to 1 or 0 whenever an instruction is execute Other registers that cannot be directly accessed by programmer

Instruction Set · Data movement instructions · Data operation instructions · Program control instructions

Data movement instruction for the Relatively Simple CPU Operation NOP No operation LDAC  AC = M[] STAC  M[] = AC MVAC R = AC MOVR AC = R AC – accumulator register R – general purpose register /M[] – 16-bit memory address

NOP -- performs no operation LDAC -- loads data from memory and stores it in the AC STAC -- copies data from AC to memory location  MVAC -- copies data in AC to register R MOVR -- copies data from R to AC

Data operation instruction for the Relatively Simple CPU ADD AC = AC + R, If (AC + R = 0) Then Z = 1 Else Z = 0 SUB AC = AC - R, If (AC - R = 0) Then Z = 1 Else Z = 0 INAC AC = AC + 1, If (AC + 1 = 0) Then Z = 1 Else Z = 0 CLAC AC = 0, Z = 1 AND AC = AC  R, If (AC  R = 0) Then Z = 1 Else Z = 0 OR AC = AC  R, If (AC  R = 0) Then Z = 1 Else Z = 0 XOR AC = AC  R, If (AC  R = 0) Then Z = 1 Else Z = 0 NOT AC = AC, If (AC = 0) Then Z = 1 Else Z = 0 AC – accumulator register R – general purpose register Z – zero flag

Program control instruction for the Relatively Simple CPU Operation JUMP  GOTO  JMPZ  If (Z = 1) Then GOTO  JPNZ  If (Z = 0) Then GOTO  Z – zero flag  -- 16-bit memory address

Note: Each instruction is having an 8-bit instruction code. LDAC, STAC, JUMP, JUMPZ, and JPNZ instructions all require a 16-bit memory address, represented by /M[]. These instructions each require 3 bytes in memory.

Instruction formats for the Relatively Simple CPU byte 1 byte 2 byte 3 Example: 25: JUMP 1234 H instruction stored in memory: 25th byte 25: 0000 0101 (JUMP) 26th byte 26: 0011 0100 (34H) 27th byte 27: 0001 0010 (12H) H -- in hexadecimal format

Example program using Relatively Simple CPU coding The Algorithm of the program 1: total = 0, i = 0 2: i = i + 1 3: total = total + i 4: IF i  n THEN GOTO 2 What exactly this algorithm doing is: 1+ 2 + … + (n – 1) + n

The Relatively Simple CPU coding of the program CLAC STAC total STAC i Loop: LDAC i INAC MVAC LDAC total ADD LDAC n SUB JPNZ Loop total = 0, i = 0 i = i +1 total = total +1 IF i  n THEN GOTO Loop

Relatively Simple microprocessors, or CPU 3.5.1-3 Relatively Simple microprocessors, or CPU · Designed as an instructional aid and draws its features from several real microprocessors · Too limited to run anything as complex as personal computer · It has about the right level of complexity to control a microwave oven or other consumer appliance

Instruction Set Architecture (ISA) · Memory Model · Registers Set · Instruction Set

Memory Model · This microprocessor is a complete 8-bit parallel Central Processing Unit (CPU). · Each byte has 8 bits · Isolated I/O, input and output devices are treated as being separate from memory. Different instructions access memory and I/O devices

Register Set Accumulator A, is an 8-bit register. Register B, C, D, E, H, and L, are six 8-bit general purpose register. These registers can be accessed individually, or can be accessed in pairs. Pairs are not arbitrary; BC are a pair (16- bit), as are DE, and HL Register HL is used to point to a memory location. Stack pointer, SP, is an 16-bit register, which contains the address of the top of the stack.

The sign flag, S, indicates the sign of a value The sign flag, S, indicates the sign of a value calculated by an arithmetic or logical instruction. The zero flag, Z, is set to 1 if an arithmetic or logical operation produces a result of 0; otherwise set to 0. The parity flag, P, is set to 1 if the result of an arithmetic or logical operation has an even number of 1’s; otherwise it is set to 0. The carry flag, CY, is set when an arithmetic operation generates a carry out. The auxiliary carry flag, AC, very similar to CY, but it denotes a carry from the lower half of the result to the upper half.

The interrupt mask, IM, used to enable and The interrupt mask, IM, used to enable and disable interrupts, and to check for pending interrupts

Instruction Set · Data movement instructions · Data operation instructions · Program control instructions

Data movement instruction for the 8085 microprocessor Operation MOV r1, r2 r1 = r2 LDA  A = M[] STA  M[] = A PUSH rp Stack = rp (rp  SP) PUSH PSW Stack = A, flag register POP rp rp = Stack (rp  SP) POP PSW A, flag register = Stack IN n A = input port n OUT n Output port n =A r, r1, r2 – any 8-bits register  / M[] – memory location rp – register pair BC, DE, HL, SP(Stack pointer) n – 8-bit address or data value

Data operation instruction for the 8085 microprocessor Flags ADD r A = A + r All ADD M A = A + M[HL] INR r r = r + 1 Not CY IN M M[HL] = M[HL] + 1 DCR n r = r - 1 DCR M M[HL] = M[HL] - 1 XRA M A = A  M[HL] CMP r Compare A and r CMA A = A None CY – carry flag

Program control instruction for the 8085 microprocessor Instruction Operation JUMP  GOTO  Jcond  If condition is true then GOTO  CALL  Call subroutine at  Ccond  If condition is true then call subroutine at  RET Return from subroutine Rcond If condition is true then return from subroutine cond – conditional instructions NZ (Z = 0) Z (Z = 1) P (S = 0) N (S = 1) PO (P = 0) PE (P = 1) NC (CY = 0) C (CY = 1) Z – zero flag, S – sign flag, P – parity flag, C – carry flag

Note: Each instruction is having an 8-bit instruction code. Some instructions have fields to specify registers, while others are fixed.

Instruction formats for the Relatively Simple CPU byte 1 byte 2 Two-byte Example: 25: MVI r, n instruction stored in memory: 25th byte 25: 00xxx110 (MVI r) 26th byte 26: xxxx xxxx (low-order memory) Specifies r

byte 1 byte 2 byte 3 Three-byte Example: 25: LXI rp,  instruction stored in memory: 25th byte 25: 00rp 0001 (LXI rp) 26th byte 26: xxxx xxxx (low-order memory) 27th byte 27: yyyy yyyy (high-order memory) Example: 25: LXI rp,  instruction stored in memory: 25th byte 25: 00rp 0001 (LXI rp) 26th byte 26: xxxx xxxx (low-order memory) 27th byte 27: yyyy yyyy (high-order memory) Example: 25: MOV r1, r2 instruction stored in memory: 25th byte 25: 0000 0001 (MOV) 26th byte 26: xxxx xxxx (specifies r1) 27th byte 27: yyyy yyyy (specifies r2) Specifies rp

Example program using 8085 microprocessor coding The Algorithm of the program 1: total = 0, i = 0 2: i = i + 1 3: total = total + i 4: IF i  n THEN GOTO 2 n + (n - 1) + … + 1 The 8085 coding of the program LDA n MOV B, A XRA A Loop: ADD B DCR B JNZ Loop STA total i = n sum = A  A = 0 sum = sum + i i = i - 1 IF i  0 THEN GOTO Loop total = sum

3.5.4. Analyzing the 8085 ISA · The 8085 CPU’s instruction set is more complete than that of the Relatively Simple CPU. More suitable for consumer appliance. · Too limited to run anything as complex as personal computer

Advantages of the 8085’s ISA vs. Relative Simple CPU · It has the ability to use subroutines · It can incorporate interrupts, and it has everything the programmer needs in order to process interrupts. · The register set for the 8085 is mostly sufficient, thus less coding apply which will improve task completion.

Disadvantages of the 8085’s ISA · The instruction set is fairly orthogonal. E.g. no clear accumulator instruction Disadvantages of the 8085’s ISA · Like the Relatively Simple CPU, it cannot easily process floating point data.

Summary of ISA 3.6. 1. The ISA specifies a. an instruction set that the CPU can process b. its user accessible registers c. how it interacts with memory 2. The ISA does not specify how the CPU is designed, but it specifies what it must be able to do. 3. The ISA is concerned only with the machine language of a microprocessor because CPU only executes machine language program, not any kind of high-level program.

4. When designing an ISA, an important goal is completeness: a. instruction set should include the instructions needed to program all desired tasks. b. instruction should be orthogonal, minimizing overlap, reducing the digital logic without reducing its capabilities within the CPU. c. CPU should includes enough registers to minimize memory accesses, and improve performance. 5. An ISA should specifies the types of data the instruction set to process.

6. An ISA should specifies the addressing modes each 6. An ISA should specifies the addressing modes each instruction can use 7. An ISA should specifies the format for each instruction

THE END