- Addressing Modes Of 8086 Ppt
- Addressing Modes Of 8086 In Hindi
- Addressing Modes Of 8086 Ppt
- Addressing Modes Of 8086 With Examples Pdf
- Addressing Modes Of 8086 With Examples Pdf
- Addressing Modes Of 8086 Microprocessor
- Addressing modes are used to specify the address of the data or data in instructions. It is basically the way of specifying data in instruction. There are various such ways, addressing modes for data memory: Immediate Addressing Mode; In this mode the operand is specified in the instruction itself.
- 8086 Memory Addressing Modes memory. This may The 8086 provides 17 different ways to access seem like quite a bit at first, but fortunately most of the address modes are simple variants of one another so they're very easy to learn. The key to good assembly language programming is the proper use of memory addressing modes.
- Processors let you access memory in many different ways. The 80x86 memory addressing modes provide flexible access to memory, allowing you to easily access variables, arrays, records, pointers, and other complex data types. Mastery of the 80x86 addressing modes is the first step towards mastering 80x86 assembly language.
- ADDRESSING MODES: MEMORY ACCESS 5 8086 Microprocessor 20 Address lines 8086 can address up to 220 = 1M bytes of memory However, the largest register is only 16 bits Physical Address will have to be calculated Physical Address: Actual address of a byte in memory. The value which goes out onto the address bus.
Microprocessor Multiple Choice Questions on “Addressing Modes of 8086”.
ADDRESSING MODES OF 8086 The set of mechanisms by which an instruction can specify how to obtain its operands is known as Addressing modes. The CPU can access the operands (data) in a number of different modes. The addressing modes available in Intel 8086 are: 1. Register Addressing 2. Immediate Addressing 3. Direct Addressing 4.
1. The instruction, MOV AX, 0005H belongs to the address modea) register
b) direct
c) immediate
d) register relative
Answer: c
Clarification: In Immediate addressing mode, immediate data is a part of instruction and appears in the form of successive byte or bytes.2. The instruction, MOV AX, 1234H is an example of
a) register addressing mode
b) direct addressing mode
c) immediate addressing mode
d) based indexed addressing mode
Answer: c
Clarification: Since immediate data is present in the instruction.3. The instruction, MOV AX, [2500H] is an example of
a) immediate addressing mode
b) direct addressing mode
c) indirect addressing mode
d) register addressing mode
Answer: b
Clarification: Since the address is directly specified in the instruction as a part of it.4. If the data is present in a register and it is referred using the particular register, then it is
a) direct addressing mode
b) register addressing mode
c) indexed addressing mode
d) immediate addressing mode
Answer: b
Clarification: Since register is used to refer the address.5. The instruction, MOV AX,[BX] is an example of
a) direct addressing mode
b) register addressing mode
c) register relative addressing mode
d) register indirect addressing mode
Answer: d
Clarification: Since the register used to refer to the address is accessed indirectly.6. If the offset of the operand is stored in one of the index registers, then it is
a) based indexed addressing mode
b) relative based indexed addressing mode
c) indexed addressing mode
d) none of the mentioned
Answer: c
Clarification: In the indexed addressing mode, the offset of an operand is stored and in the rest of them, address is stored.7. The addressing mode that is used in unconditional branch instructions is
a) intrasegment direct addressing mode
b) intrasegment indirect addressing mode
c) intrasegment direct and indirect addressing mode
d) intersegment direct addressing mode
Answer: b
Clarification: In intrasegment indirect mode, the branch address is found as the content of a register or a memory location.8. If the location to which the control is to be transferred lies in a different segment other than the current one, then the mode is called
a) intrasegment mode
b) intersegment direct mode
c) intersegment indirect mode
d) intersegment direct and indirect mode
Answer: d
Clarification: In intersegment mode, the control to be transferred lies in a different segment.9. The instruction, JMP 5000H:2000H;
is an example of
a) intrasegment direct mode
Addressing Modes Of 8086 Ppt
b) intrasegment indirect mode
c) intersegment direct mode
d) intersegment indirect mode
Answer: c
Clarification: Since in intersegment direct mode, the address to which the control is to be transferred is in a different segment.10. The contents of a base register are added to the contents of index register in
a) indexed addressing mode
b) based indexed addressing mode
c) relative based indexed addressing mode
d) based indexed and relative based indexed addressing mode
Answer: d
Clarification: The effective address is formed by adding the contents of both base and index registers to a default segment.
---- >> Related Posts of Above Questions :::
------>>[MOST IMPORTANT]<<------Index
- 1 - The 80x86 Addressing Modes
- 1.1 - 8086 Register Addressing Modes
- 1.2 - 8086 Memory Addressing Modes
- 1.2.1 - The Displacement Only Addressing Mode
- 1.2.2 - The Register Indirect Addressing Modes
- 1.2.3 - Indexed Addressing Modes
- 1.2.4 - Based Indexed Addressing Modes
- 1.2.5 - Based Indexed Plus Displacement Addressing Mode
- 1.2.6 - MASM Syntax for 8086 Memory Addressing Modes
- 1.2.7 - An Easy Way to Remember the 8086 Memory Addressing Modes
- 1.2.8 - Some Final Comments About 8086 Addressing Modes
1 The 80x86 Addressing Modes
The 80x86 processors let you access memory in many different ways. The 80x86 memory addressing modes provide flexible access to memory, allowing you to easily access variables, arrays, records, pointers, and other complex data types. Mastery of the 80x86 addressing modes is the first step towards mastering 80x86 assembly language.When Intel designed the original 8086 processor, they provided it with a flexible, though limited, set of memory addressing modes. Intel added several new addressing modes when it introduced the 80386 microprocessor. Note that the 80386 retained all the modes of the previous processors; the new modes are just an added bonus. If you need to write code that works on 80286 and earlier processors, you will not be able to take advantage of these new modes. However, if you intend to run your code on 80386sx or higher processors, you can use these new modes. Since many programmers still need to write programs that run on 80286 and earlier machines, it's important to separate the discussion of these two sets of addressing modes to avoid confusing them.
1.1 8086 Register Addressing Modes
Most 8086 instructions can operate on the 8086's general purpose register set. By specifying the name of the register as an operand to the instruction, you may access the contents of that register. Consider the 8086mov
(move) instruction: This instruction copies the data from the source operand to the destination operand. The eight and 16 bit registers are certainly valid operands for this instruction. The only restriction is that both operands must be the same size. Now let's look at some actual 8086 mov
instructions: Remember, the registers are the best place to keep often used variables. As you'll see a little later, instructions using the registers are shorter and faster than those that access memory. Throughout this chapter you'll see the abbreviated operands reg and r/m (register/memory) used wherever you may use one of the 8086's general purpose registers.In addition to the general purpose registers, many 8086 instructions (including the
mov
instruction) allow you to specify one of the segment registers as an operand. There are two restrictions on the use of the segment registers with the mov
instruction. First of all, you may not specify cs
as the destination operand, second, only one of the operands can be a segment register. You cannot move data from one segment register to another with a single mov
instruction. To copy the value of cs
to ds
, you'd have to use some sequence like: You should never use the segment registers as data registers to hold arbitrary values. They should only contain segment addresses. But more on that, later. Throughout this text you'll see the abbreviated operand sreg used wherever segment register operands are allowed (or required).1.2 8086 Memory Addressing Modes
The 8086 provides 17 different ways to access memory. This may seem like quite a bit at first, but fortunately most of the address modes are simple variants of one another so they're very easy to learn. And learn them you should! The key to good assembly language programming is the proper use of memory addressing modes.The addressing modes provided by the 8086 family include displacement-only, base, displacement plus base, base plus indexed, and displacement plus base plus indexed. Variations on these five forms provide the 17 different addressing modes on the 8086. See, from 17 down to five. It's not so bad after all!
1.2.1 The Displacement Only Addressing Mode
The most common addressing mode, and the one that's easiest to understand, is the displacement-only (or direct) addressing mode. The displacement-only addressing mode consists of a 16 bit constant that specifies the address of the target location. The instructionmov al,ds:[8088h]
loads the al
register with a copy of the byte at memory location 8088h. Likewise, the instruction mov ds:[1234h],dl
stores the value in the dl
register to memory location 1234h:The displacement-only addressing mode is perfect for accessing simple variables. Of course, you'd probably prefer using names like 'I' or 'J' rather than 'DS:[1234h]' or 'DS:[8088h]'. Well, fear not, you'll soon see it's possible to do just that.
Intel named this the displacement-only addressing mode because a 16 bit constant (displacement) follows the mov
opcode in memory. In that respect it is quite similar to the direct addressing mode on the x86 processors (see the previous chapter). There are some minor differences, however. First of all, a displacement is exactly that- some distance from some other point. On the x86, a direct address can be thought of as a displacement from address zero. On the 80x86 processors, this displacement is an offset from the beginning of a segment (the data segment in this example). Don't worry if this doesn't make a lot of sense right now. You'll get an opportunity to study segments to your heart's content a little later in this chapter. For now, you can think of the displacement-only addressing mode as a direct addressing mode. The examples in this chapter will typically access bytes in memory. Don't forget, however, that you can also access words on the 8086 processors :
By default, all displacement-only values provide offsets into the data segment. If you want to provide an offset into a different segment, you must use a segment override prefix before your address. For example, to access location 1234h in the extra segment (es
) you would use an instruction of the form mov ax,es:[1234h].
Likewise, to access this location in the code segment you would use the instruction mov ax, cs:[1234h].
The ds:
prefix in the previous examples is not a segment override. The CPU uses the data segment register by default. These specific examples require ds:
because of MASM's syntactical limitations.
1.2.2 The Register Indirect Addressing Modes
The 80x86 CPUs let you access memory indirectly through a register using the register indirect addressing modes. There are four forms of this addressing mode on the 8086, best demonstrated by the following instructions: 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. The following instructions demonstrate the use of these overrides: Intel refers to
[bx]
and [bp]
as base addressing modes and bx
and bp
as base registers (in fact, bp
stands for base pointer). Intel refers to the [si]
and [di]
addressing modes as indexed addressing modes (si
stands for source index, di
stands for destination index). However, these addressing modes are functionally equivalent. This text will call these forms register indirect modes to be consistent.
Note: the [si]
and [di]
addressing modes work exactly the same way, just substitute si
and di
for bx
above.
1.2.3 Indexed Addressing Modes
The indexed addressing modes use the following syntax: Ifbx
contains 1000h, then the instruction mov cl,20h[bx]
will load cl
from memory location ds:1020h. Likewise, if bp
contains 2020h, mov dh,1000h[bp]
will load Addressing Modes Of 8086 In Hindi
dh
from location ss:3020.The offsets generated by these addressing modes are the sum of the constant and the specified register. The addressing modes involving
bx, si,
and di
all use the data segment, the disp[bp]
addressing mode uses the stack segment by default. As with the register indirect addressing modes, you can use the segment override prefixes to specify a different segment: You may substitute si
or di
in the figure above to obtain the [si+disp]
and [di+disp]
addressing modes.Note that Intel still refers to these addressing modes as based addressing and indexed addressing. Intel's literature does not differentiate between these modes with or without the constant. If you look at how the hardware works, this is a reasonable definition. From the programmer's point of view, however, these addressing modes are useful for entirely different things. Which is why this text uses different terms to describe them. Unfortunately, there is very little consensus on the use of these terms in the 80x86 world.
1.2.4 Based Indexed Addressing Modes
Addressing Modes Of 8086 Ppt
The based indexed addressing modes are simply combinations of the register indirect addressing modes. These addressing modes form the offset by adding together a base register (bx
or bp
) and an index register (si
or di
). The allowable forms for these addressing modes are Suppose that bx
contains 1000h and si
contains 880h. Then the instruction would load al
from location DS:1880h. Likewise, if bp
contains 1598h and di
contains 1004, mov ax,[bp+di]
will load the 16 bits in ax
from locations SS:259C and SS:259D.The addressing modes that do not involve
bp
use the data segment by default. Those that have bp
as an operand use the stack segment by default.You substitute di
in the figure above to obtain the [bx+di]
addressing mode.
You substitute di
in the figure above for the [bp+di]
addressing mode.
1.2.5 Based Indexed Plus Displacement Addressing Mode
These addressing modes are a slight modification of the base/indexed addressing modes with the addition of an eight bit or sixteen bit constant. The following are some examples of these addressing modes:You may substitute
di
in the figure above to produce the [bx+di+disp]
addressing mode.You may substitute di
in the figure above to produce the [bp+di+disp]
addressing mode.
Suppose bp
contains 1000h, bx
contains 2000h, si
contains 120h, and di
contains 5. Then mov al,10h[bx+si]
loads al
from address DS:2130; mov ch,125h[bp+di]
loads ch
from location SS:112A; and mov bx,cs:2[bx][di]
loads bx
from location CS:2007.
1.2.6 MASM Syntax for 8086 Memory Addressing Modes
Microsoft's assembler uses several different variations to denote indexed, based/indexed, and displacement plus based/indexed addressing modes. You will see all of these forms used interchangeably throughout this text. The following list some of the possible combinations that are legal for the various 80x86 addressing modes: MASM treats the '[ ]' symbols just like the '+' operator. This operator is commutative, just like the '+' operator. Of course, this discussion applies to all the 8086 addressing modes, not just those involving BX and SI. You may substitute any legal registers in the addressing modes above.1.2.7 An Easy Way to Remember the 8086 Memory Addressing Modes
There are a total of 17 different legal memory addressing modes on the 8086: disp, [bx], [bp], [si], [di], disp[bx], disp[bp], disp[si], disp[di], [bx][si], [bx][di], [bp][si], [bp][di], disp[bx][si], disp [bx][di], disp[bp][si], and disp[bp][di]. You could memorize all these forms so that you know which are valid (and, by omission, which forms are invalid). However, there is an easier way besides memorizing these 17 forms. Consider the chart:If you choose zero or one items from each of the columns and wind up with at least one item, you've got a valid 8086 memory addressing mode. Some examples:
- Choose
disp
from column one, nothing from column two,[di]
from column 3, you getdisp[di]
. - Choose
disp, [bx],
and[di]
. You getdisp[bx][di]
. - Skip column one & two, choose
[si]
. You get[si]
- Skip column one, choose
[bx]
, then choose[di]
. You get[bx][di]
disp[dx][si]
is illegal because you cannot obtain [dx]
from any of the columns above.1.2.8 Some Final Comments About 8086 Addressing Modes
The effective address is the final offset produced by an addressing mode computation. For example, ifbx
contains 10h, the effective address for 10h[bx]
is 20h. You will see the term effective address in almost any discussion of the 8086's addressing mode. There is even a special instruction load effective address (lea
) that computes effective addresses.Addressing Modes Of 8086 With Examples Pdf
Not all addressing modes are created equal! Different addressing modes may take differing amounts of time to compute the effective address. The exact difference varies from processor to processor. Generally, though, the more complex an addressing mode is, the longer it takes to compute the effective address. Complexity of an addressing mode is directly related to the number of terms in the addressing mode. For example,disp[bx][si]
Addressing Modes Of 8086 With Examples Pdf
is more complex than [bx]
. See the instruction set reference in the appendices for information regarding the cycle times of various addressing modes on the different 80x86 processors.The displacement field in all addressing modes except displacement-only can be a signed eight bit constant or a signed 16 bit constant. If your offset is in the range -128...+127 the instruction will be shorter (and therefore faster) than an instruction with a displacement outside that range. The size of the value in the register does not affect the execution time or size. So if you can arrange to put a large number in the register(s) and use a small displacement, that is preferable over a large constant and small values in the register(s).
If the effective address calculation produces a value greater than 0FFFFh, the CPU ignores the overflow and the result wraps around back to zero. For example, if
bx
contains 10h, then the instruction mov al,0FFFFh[bx]
will load the Addressing Modes Of 8086 Microprocessor
al
register from location ds:0Fh, not from location ds:1000Fh.In this discussion you've seen how these addressing modes operate. The preceding discussion didn't explain what you use them for. That will come a little later. As long as you know how each addressing mode performs its effective address calculation, you'll be fine.
Do you have feedback from this page?
Updated: 7.3.1997.
© MKsa