Monday, March 3, 2025

Addressing modes in 8086 programming

 The different ways in which a source operand is denoted in an instruction is known as addressing modes. There are 8 different addressing modes in 8086 programming 

Addressing modes are the techniques used by the CPU to identify where the data needed for an operation is stored. They provide rules for interpreting or modifying the address field in an instruction before accessing the operand.

Addressing modes for 8086 instructions are divided into two categories:

1) Addressing modes for data

2) Addressing modes for branch

The 8086 memory addressing modes provide flexible access to memory, allowing us to easily access variables, arrays, records, pointers, and other complex data types. The key to good assembly language programming is the proper use of memory addressing modes.

An assembly language program instruction consists of two parts

am1

The memory address of an operand consists of two components:




IMPORTANT TERMS

  • Starting address of memory segment.
  • Effective address or Offset: An offset is determined by adding any combination of three address elements: displacement, base and index.
    • Displacement: It is an 8 bit or 16 bit immediate value given in the instruction.
    • Base: Contents of base register, BX (Base Register)or BP (Base Pointer Register).
    • Index: Content of index register SI (Source Index Register) or DI (Destination Index Register).

According to different ways of specifying an operand by 8086 microprocessor, different addressing modes are used by 8086.

Importance of Addressing Modes

  • They allow flexibility in data handling, such as accessing arrays, records, or pointers.
  • They support program control with techniques like loops, branches, and jumps.
  • They enable efficient memory usage and program relocation during runtime.
  • They reduce the complexity of programming by offering multiple ways to access data.

Types of Addressing Modes in Computer Architecture

Addressing Modes used by 8086 microprocessor are discussed below:

Implied mode

In implied addressing the operand is specified in the instruction itself. In this mode the data is 8 bits or 16 bits long and data is the part of instruction. Zero address instruction are designed with implied addressing mode.am2

Example:  CLC
(used to reset Carry flag to 0)

Immediate addressing mode (symbol #)

In this mode data is present in address field of instruction .Designed like one address instruction format. Note: Limitation in the immediate mode is that the range of constants are restricted by size of address field.

Example:  MOV AL, 35H
(move the data 35H into AL register)

Register mode

In register addressing the operand is placed in one of 8 bit or 16 bit general purpose registers. The data is in the register that is specified by the instruction. Here one register reference is required to access the data.am3

Example: MOV AX,CX
(move the contents of CX register to AX register)

Register Indirect mode

In this addressing the operand’s offset is placed in any one of the registers BX,BP,SI,DI as specified in the instruction. The effective address of the data is in the base register or an index register that is specified by the instruction. Here two register reference is required to access the data.am5The 8086 CPUs let you access memory indirectly through a register using the register indirect addressing modes.

MOV AX, [BX]
(move the contents of memory location addressed by the register BX to the register AX)

Auto Indexed (increment mode)

Effective address of the operand is the contents of a register specified in the instruction. After accessing the operand, the contents of this register are automatically incremented to point to the next consecutive memory location.(R1)+. Here one register reference, one memory reference and one ALU operation is required to access the data. Example:

Add R1, (R2)+  // OR
R1 = R1 +M[R2]
R2 = R2 + d

Useful for stepping through arrays in a loop. R2 – start of array d – size of an element

Auto indexed ( decrement mode)

Effective address of the operand is the contents of a register specified in the instruction. Before accessing the operand, the contents of this register are automatically decremented to point to the previous consecutive memory location. (R1)Here one register reference, one memory reference and one ALU operation is required to access the data. Example:

Add R1,-(R2)   //OR
R2 = R2-d
R1 = R1 + M[R2]

Auto decrement mode is same as  auto increment mode. Both can also be used to implement a stack as push and pop . Auto increment and Auto decrement modes are useful for implementing “Last-In-First-Out” data structures.

Direct addressing/ Absolute addressing Mode (symbol [ ])

The operand’s offset is given in the instruction as an 8 bit or 16 bit displacement element. In this addressing mode the 16 bit effective address of the data is the part of the instruction. Here only one memory reference operation is required to access the data.am6

Example: ADD AL,[0301]   //add the contents of offset address 0301 to AL

Indirect addressing Mode (symbol @ or () )

In this mode address field of instruction contains the address of effective address. Here two references are required. 1st reference to get effective address. 2nd reference to access the data. Based on the availability of Effective address, Indirect mode is of two kind:

  • Register Indirect: In this mode effective address is in the register, and corresponding register name will be maintained in the address field of an instruction. Here one register reference, one memory reference is required to access the data.

Example : MOV A, @R0   

  • Memory Indirect: In this mode effective address is in the memory, and corresponding memory address will be maintained in the address field of an instruction. Here two memory reference is required to access the data.

Example : MOV AX, [[5000H]]

Indexed addressing mode

The operand’s offset is the sum of the content of an index register SI or DI and an 8 bit or 16 bit displacement.

Example: MOV AX, [SI +05]

Based Indexed Addressing

The operand’s offset is sum of the content of a base register BX and an index register SI or DI.

Example: ADD AX, [BX+SI]

Based on Transfer of control, addressing modes are:

PC relative addressing mode

PC relative addressing mode is used to implement intra segment transfer of control, In this mode effective address is obtained by adding displacement to PC.

EA= PC + Address field value
PC= PC + Relative value.

Base register addressing mode

Base register addressing mode is used to implement inter segment transfer of control. In this mode effective address is obtained by adding base register value to address field value.

EA= Base register + Address field value.
PC= Base register + Relative value

Note :

  • PC relative and based register both addressing modes are suitable for program relocation at runtime.
  • Based register addressing mode is best suitable to write position independent codes.

Advantages of Addressing Modes

  • Enable advanced programming techniques like pointers and counters for loops.
  • Simplify memory access for arrays and complex data structures.
  • Allow program relocation during runtime.
  • Reduce the size of the instruction field, making the program more efficient.

Frequently Asked Question on Addressing Modes – FAQs

What are the addressing modes of 8085?

The addressing modes of the 8085 microprocessor are Immediate, Direct, Register, Register Indirect, and Implicit.

What is opcode and operand?

An opcode (operation code) is the part of an instruction that specifies the operation to be performed (e.g., ADD, SUB). An operand is the data or memory location on which the operation is executed. For example, in ADD A, B, “ADD” is the opcode, and “A” and “B” are the operands.

What is an effective address?

An effective address is the actual memory location from which data is accessed or to which data is stored during instruction execution. It is calculated using the addressing mode, combining base addresses, offsets, or other components specified in the instruction.

Advantages of Addressing Modes

  • By using different addressing modes, you can access data in registers or memory and as immediate values which makes CPU instructions more versatile.
  • The register-based and indexed mode make better use of memory, especially in the case of loop operations / arrays.
  • For example, modes such as register addressing will make the instructions run faster because they read data directly from registers rather than memory.

Disadvantages of Addressing Modes

  • Indirect or indexed addressing modes: here the program logic becomes harder to see and maintain as not all instructions are using them.
  • Like displacement or relative addressing modes, that could add possibly memory overhead which is near in the event of large value displacements.
  • Other addressing modes are more closely linked to the CPU architecture, making it less easy for assembly code to be ported across different hardware platforms.

"This Content Sponsored by Buymote Shopping app

BuyMote E-Shopping Application is One of the Online Shopping App

Now Available on Play Store & App Store (Buymote E-Shopping)

Click Below Link and Install Application: https://buymote.shop/links/0f5993744a9213079a6b53e8

Sponsor Content: #buymote #buymoteeshopping #buymoteonline #buymoteshopping #buymoteapplication" 

No comments:

Post a Comment

Traffic Light using Arduino - A Beginner Project

  Traffic Light using Arduino - A Beginner Project Introduction In this project I will Demonstrate you how to make a very simple and very co...