0% found this document useful (0 votes)
243 views18 pages

Addressing Mode

The document discusses various addressing modes used in microprocessors: 1. Immediate addressing stores the operand value directly in the instruction. 2. Register addressing stores the operand in a processor register specified in the instruction. 3. Register indirect addressing stores the operand address in a register and the operand in memory. 4. Direct addressing stores the absolute operand address directly in the instruction. 5. Indirect addressing stores the operand address address in memory location specified in the instruction. 6. Implied addressing has the operand implied by the instruction itself. 7. Relative addressing calculates the operand address by adding the instruction address to an offset. 8. Indexed addressing calculates the operand address by adding a register

Uploaded by

Tech Sojib
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
243 views18 pages

Addressing Mode

The document discusses various addressing modes used in microprocessors: 1. Immediate addressing stores the operand value directly in the instruction. 2. Register addressing stores the operand in a processor register specified in the instruction. 3. Register indirect addressing stores the operand address in a register and the operand in memory. 4. Direct addressing stores the absolute operand address directly in the instruction. 5. Indirect addressing stores the operand address address in memory location specified in the instruction. 6. Implied addressing has the operand implied by the instruction itself. 7. Relative addressing calculates the operand address by adding the instruction address to an offset. 8. Indexed addressing calculates the operand address by adding a register

Uploaded by

Tech Sojib
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 18

ADDRESSING

MODES
• Microprocessor executes the instructions stored in memory (RAM).
• It executes one instruction at a time.
• Each of the instruction contains operations and operands.
• Operation specifies the type of action to be performed.
• For example: ADD, SUB, MOV, INC, LOAD, STORE
• Operands are the data on which the operation is to be performed.

MOV B, A Here MOV is operation and (B & A) are operands.

ADD Here ADD is operation and (B) is operand.

B
ADDRESSING
MODES
• Operand can be place either in one of the processor register or in
memory.

• There are different ways to get the operands.

• The way in which the operand is taken from register or memory is


named as addressing mode.
TYPES OF ADDRESSING MODES
1. Immediate Addressing Mode
2. Register Addressing Mode
3. Register Indirect Addressing Mode
4. Direct Addressing Mode
5. Indirect Addressing Mode
6. Implied Addressing Mode
7. Relative Addressing Mode
8. Indexed Addressing Mode
9. Base Register Addressing Mode
10. Autoincrement or Autodecrement Addressing Mode
1. IMMEDIATE ADDRESSING
MODE
• The operand is specified with in the instruction.
• Operand itself is provided in the instruction rather than its
address.
Move Immediate
MVI A , 15h A ← 15h Here 15h is the immediate operand

Add Immediate
ADI 3Eh A ← A + 3Eh Here 3Eh is the immediate operand
2. REGISTER
ADDRESSING MODE
• The operand is specified with in one of the processor register.
• Instruction specifies the register in which the operand is stored.

Move
MOV C , A C←A Here A is the operand specified in register

Add
ADD B A← A+B Here B is the operand specified in register
3. REGISTER INDIRECT
ADDRESSING MODE
• The instruction specifies the register in which the memory
address of operand is placed.
• It do not specify the operand itself but its location with in the
memory where operand is placed.

Move
MOV A , M A ← [[H][L]]

It moves the data from memory location specified by HL register pair to A.


3. REGISTER INDIRECT
ADDRESSING MODE
MOV A , M A ← [[H][L]]
It moves the data from memory location specified by HL register pair to A.

Before

After
2807 A A9 2807
2806 2806
H
A 28 2805 A9 H 28 2805 A9
2804 2804
L 05 2803
L 05 2803
2802 2802
2801 2801
A ← [2805] A ← A9
2800 2800
4. DIRECT ADDRESSING
MODE
• The instruction specifies the direct address of the operand.
• The memory address is specified where the actual operand is.

Load Accumulator
LDA 2805h A ← [2805]
It loads the data from memory location 2805 to A.

Store Accumulator
STA 2803h [2803] ← A
It stores the data from A to memory location 2803.
5. INDIRECT
ADDRESSING MODE
• The instruction specifies the indirect address where the effective
address of the operand is placed.
• The memory address is specified where the actual address of
operand is placed.

Move
MOV A, 2802h A ← [[2802]]
It moves the data from memory location specified by the location 2802 to A.
6. IMPLIED ADDRESSING
MODE
• It is also called inherent addressing mode.
• The operand is implied by the instruction.
• The operand is hidden/fixed inside the instruction.

Complement Accumulator CMA


(Here accumulator A is implied by the instruction)

Complement Carry Flag CMC


(Here Flags register is implied by the instruction)

Set Carry Flag STC


(Here Flags register is implied by the instruction)
7. RELATIVE
ADDRESSING MODE
• In relative addressing mode, contents of Program Counter PC is
added to address part of instruction to obtain effective address.

• The address part of the instruction is called as offset and it can +ve
or –ve.

• When the offset is added to the PC the resultant number is the


memory location where the operand will be placed.
7. RELATIVE
ADDRESSING MODE

2807 22 2807 22
2806 FF 2806 FF Actual Operand
Offset = 04h 2805 6D 2805 6D
2804 59 2804 59
PC 2801 2803 08 2803 08
2802 2E 2802 2E
2801 F3 2801 F3
2800 9F 2800 9F

Effective address of operand = PC + 01 + offset


Effective address of operand = 2801 + 01 + 04
Effective address of operand = 2806h
8. INDEXED ADDRESSING
MODE
• In index addressing mode, contents of Index register is added to
address part of instruction to obtain effective address.

• The address part of instruction holds the beginning/base address and is


called as base.

• The index register hold the index value, which is +ve.

• Base remains same, the index changes.

• When the base is added to the index register the resultant number is
the memory location where the operand will be placed.
8. INDEXED ADDRESSING
MODE
Base = 2800h
Effective address of operand = Base + IX
2807 22 2807 22 2807 22 2807 22
2806 FF 2806 FF 2806 FF 2806 FF
2805 6D 2805 6D 2805 6D 2805 6D
2804 59 2804 59 2804 59 2804 59
2803 08 2803 08 2803 08 2803 08
2802 2E 2802 2E 2802 2E 2802 2E
2801 F3 2801 F3 2801 F3 2801 F3
2800 9F 2800 9F 2800 9F 2800 9F

IX 0000 IX 0001 IX 0002 IX 0003


2800h + 0000h = 2800h 2800h + 0001h = 2801h 2800h + 0002h = 2802h 2800h + 0003h = 2803h
9. BASE REGISTER
ADDRESSING MODE
• In base register addressing mode, contents of base register is added to address part
of instruction to obtain effective address.

• It is similar to the indexed addressing mode except the register now is called as base
instead of index.

• The base register hold the beginning/base address.

• The address part of instruction holds the offset.

• Offset remains same, the base changes.

• When the offset is added to the base register the resultant number is the memory
location where the operand will be placed.
9. BASE REGISTER
ADDRESSING MODE
Offset= 0001h
Effective address of operand = Base Register + offset
2807 22 2807 22 2807 22 2807 22
2806 FF 2806 FF 2806 FF 2806 FF
2805 6D 2805 6D 2805 6D 2805 6D
2804 59 2804 59 2804 59 2804 59
2803 08 2803 08 2803 08 2803 08
2802 2E 2802 2E 2802 2E 2802 2E
2801 F3 2801 F3 2801 F3 2801 F3
2800 9F 2800 9F 2800 9F 2800 9F

Base 2800 Base 2801 Base 2802 Base 2803

2800h + 0001h = 2801h 2801h + 0001h = 2802h 2802h + 0001h = 2803h 2803h + 0001h = 2804h
10. AUTOINCREMENT OR AUTODECREMENT
ADDRESSING MODE
• It is similar to register indirect addressing mode.

• Here the register is incremented or decremented before or after its


value is used.
10. AUTOINCREMENT OR AUTODECREMENT
ADDRESSING MODE
HL pair incremented after its value is used

At start: HL 2802

2807 22 2807 22 2807 22 2807 22


2806 FF 2806 FF 2806 FF 2806 FF
2805 6D 2805 6D 2805 6D 2805 6D
2804 59 2804 59 2804 59 2804 59
2803 08 2803 08 2803 08 2803 08
2802 2E 2802 2E 2802 2E 2802 2E
2801 F3 2801 F3 2801 F3 2801 F3
2800 9F 2800 9F 2800 9F 2800 9F

HL 2802 HL 2803 HL 2804 HL 2805

1st Time 2nd Time 3rd Time 4th Time

You might also like