17
8086 Addressing Modes Dr Vinita Kumari

8086 micro processor add mode

Embed Size (px)

Citation preview

8086 Addressing ModesDr Vinita Kumari

Introduction

The different ways in which

processor can access data are

referred as its addressing

mode

8085 addressing modes

1. Direct- STA 2006

2. Register- MOV A,B

3. Register Indirect- MOV M,B, LDAX B

4. Immediate- ADI 06

5. Implicit- CMA, NOT

Register Addressing mode

mov ax, bx ;Copies the value from BX into AX

mov dl, al ;Copies the value from AL into DL

mov si, dx ;Copies the value from DX into SI

mov sp, bp ;Copies the value from BP into SP

mov dh, cl ;Copies the value from CL into DH

Immediate Addressing mode

Memory Addressing Mode

Based on how to get effective address

Direct Memory Addressing

Register Indirect Addressing

The Reg. Indirect Addressing Modes (I) mov al, [bx] mov al, [bp] mov al, [si] mov al, [di]

As with the x86 [bx] addressing mode, these four addressing modes

reference the byte at the offset found in the bx, bp, si, or di register,

respectively. The [bx], [si], and [di] modes use the ds segment by default.

The [bp] addressing mode uses the stack segment (ss) by default.

You can use the segment override prefix symbols if you wish to access

data in different segments mov al, cs:[bx] mov al, ds:[bp] mov al,

ss:[si] mov al, es:[di]

14

Based Indexed Addressing Mode

Register Relative Addressing Mode

Relative based Indexed Mode

Rule #3:

If a value less than FFH is moved into a 16-bit register, the rest of the

bits are assumed to be all zeros.

MOV BX, 5 BX =0005

BH = 00, BL = 05