Assembly Language Programming 8085
Assembly Language Programming 8085
Assembly Language Programming 8085
PROGRAMMING OF 8085
Module 2
Session 1
Instruction Set of 8085
TOPICS
1. Introduction
2. Instruction set of 8085
3. Example Programs
4. Addressing modes of 8085
5. Instruction & Data Formats of 8085
1. INTRODUCTION
A microprocessor executes instructions given
by the user
Instructions should be in a language known to
the microprocessor
Microprocessor understands the language of
0’s and 1’s only
This language is called Machine Language
ASSEMBLY LANGUAGE OF 8085
It uses English like words to convey the
action/meaning called as MNEMONICS
For e.g.
MOV to indicate data transfer
ADD to add two values
SUB to subtract two values
ASSEMBLY LANGUAGE PROGRAM TO
ADD TWO NUMBERS
Note:
Assembly language is specific to a given
processor
For e.g. assembly language of 8085 is different
than that of Motorola 6800 microprocessor
MICROPROCESSOR UNDERSTANDS MACHINE
LANGUAGE ONLY!
Microprocessor cannot understand a program
written in Assembly language
A program known as Assembler is used to
convert a Assembly language program to
machine language
Assembly Machine
Assembler
Language Language
Program
Program Code
LOW-LEVEL/HIGH-LEVEL LANGUAGES
Machine language and Assembly language are
both
Microprocessor specific (Machine dependent)
so they are called
Low-level languages
Machine independent languages are called
High-level languages
For e.g. BASIC, PASCAL,C++,C,JAVA, etc.
RZ
5. MACHINE CONTROL INSTRUCTIONS
These instructions affect the operation of the
processor. For e.g.
HLT Stop program execution
NOP Do not perform any operation
4. WRITING A ASSEMBLY LANGUAGE
PROGRAM
2. Add them
• Copy register D to A
• Add register E to A
3. Store result
• Copy A to register C
4. Stop
• Stop processing
4. MAKE A FLOWCHART
Start
• Load 1st no. in register D
Load Registers D, E • Load 2nd no. in register E
• Stop processing
Stop
5. ASSEMBLY LANGUAGE PROGRAM
1. Get two numbers
a) Load 1st no. in register D MVI D, 2H
b) Load 2nd no. in register E MVI E, 3H
2. Add them
a) Copy register D to A MOV A, D
b) Add register E to A ADD E
3. Store result
a) Copy A to register C MOV C, A
4. Stop
a) Stop processing HLT
PROGRAM 8085 IN ASSEMBLY LANGUAGE TO ADD
TWO 8-BIT NUMBERS. RESULT CAN BE MORE THAN
8-BITS.
10011001 99H A
+
10011001 99H B
0
1 10011001
00110010 32H
99H A
CY
Storing result in Register memory
CY A
1 10011001 32H
Register B Register C
Step-1 Copy A to C
Step-2
a) Clear register B
b) Increment B by 1
2. PROGRAM LOGIC
Copy A to C
Stop
5. ASSEMBLY LANGUAGE PROGRAM
• Load registers D, E MVI D, 2H
MVI E, 3H
• Copy register D to A
• Add register E to A
MOV A, D
• Copy A to register C ADD E
MOV C, A
• Use Conditional JNC END
Jump instructions
• Clear register B MVI B, 0H
• Increment B INR B
• Stop processing END: HLT
4. ADDRESSING MODES OF 8085
Format of a typical Assembly language
instruction is given below-
[Label:] Mnemonic [Operands] [;comments]
HLT
MVI A, 20H
MOV M, A ;Copy A to memory location
whose address is stored in
register pair HL
LOAD: LDA 2050H ;Load A with contents of memory
location with address 2050H
READ: IN 07H ;Read data from Input port with
address 07H
The various formats of specifying operands are
called addressing modes
Addressing modes of 8085
1. Register Addressing
2. Immediate Addressing
3. Memory Addressing
4. Input/Output Addressing
5. Implicit Addressing
1. REGISTER ADDRESSING
Operands are one of the internal registers of 8085
Examples-
MOV A, B
ADD C
2. IMMEDIATE ADDRESSING
Value of the operand is given in the instruction
itself
Example-
MVI A, 20H
LXI H, 2050H
ADI 30H
SUI 10H
3. MEMORY ADDRESSING
One of the operands is a memory location
Depending on how address of memory location is
specified, memory addressing is of two types
Direct addressing
Indirect addressing
3(A) DIRECT ADDRESSING
16-bit Address of the memory location is specified
in the instruction directly
Examples-
H L
A 30H 20H 50H 2050H 30H
4. INPUT/OUTPUT ADDRESSING
8-bit address of the port is directly specified in
the instruction
Examples-
IN 07H
OUT 21H
5. IMPLIED/IMPLICIT ADDRESSING
This mode doesn't require any operand; the data
is specified by the opcode itself.
In implied/implicit addressing mode the operand
is hidden and the data to be operated is available
in the instruction itself.
Examples-
CMA (finds and stores the 1’s complement of the
contains of accumulator A in A)
RRC (rotate accumulator A right by one bit)
RLC (rotate accumulator A left by one bit)
5. INSTRUCTION & DATA FORMATS
8085 Instruction set can be classified according to
size (in bytes) as
1. 1-byte Instructions
2. 2-byte Instructions
3. 3-byte Instructions
1. ONE-BYTE INSTRUCTIONS
Includes Opcode and Operand in the same
byte
Examples-
Examples-
Examples-