Microprocessor - 8086 Addressing Modes
Microprocessor - 8086 Addressing Modes
Example
MOV CX, 4929 H, ADD AX, 2387 H, MOV AL, FFH
Example
MOV CX, AX ; copies the contents of the 16-bit AX register into
; the 16-bit CX register),
ADD BX, AX
Example
MOV AX, [1592H], MOV AL, [0300H]
Example
MOV AX, [BX] ; Suppose the register BX contains 4895H, then the contents
; 4895H are moved to AX
ADD CX, {BX}
https://www.tutorialspoint.com/microprocessor/microprocessor_8086_addressing_modes.htm 1/2
11/26/22, 2:47 PM Microprocessor - 8086 Addressing Modes
Example
MOV DX, [BX+04], ADD CL, [BX+08]
Example
MOV BX, [SI+16], ADD AL, [DI+16]
Example
ADD CX, [AX+SI], MOV AX, [AX+DI]
Example
MOV AX, [BX+DI+08], ADD CX, [BX+SI+16]
https://www.tutorialspoint.com/microprocessor/microprocessor_8086_addressing_modes.htm 2/2