answersLogoWhite

0

  • If 8 or 16 bit data is required for executing the instruction present in register/register pair and named of register/register pair is given along the register.this instruction is called register addressing mode instruction.
  • for example:
  • MOV B,A
User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What are the different types of addressing modes?

literal and absolute direct are the registers


What are addressing mode in microprocessor?

Addressing modes of 8051 are 1.Immediate Addressing Mode 2.Register Addressing Mode 3.Register Indirect Addressing Mode 4.Direct Addressing Mode 5.Implied Addressing Mode and 6.Relative Addressing Mode


What is addressing mode of 'inx' instruction in 8085?

register direct addressing mode


How many addressing mode of 8086 assembly language program?

there are five addressing modes in 8086 they are : 1->direct addressing 2->Indirect addressing 3->index addressing 4->immediate addressing 5->register addressing


What is addressing mode of instruction?

Addersing mode of a microprocesso tells the programmer that in which mode the instruction works . There are 5 addressing mode in 8080 , viz. Direct , register, indirect , immidiate ,implict addressing modes.


How does 8085 access data from memory location?

Data can be accessed from memory by using the addressing modes, 8085 has 5 addressing modes namely,1. Immediate addressing mode 2. register addressing mode 3. direct addressing mode 4. indirect addressing mode 5. implied addressing mode


What is the addressing mode of the instruction PCHL in 8085 microprocessor?

It is register addressing mode, as it moves the content of HL to PC which is data and not address.


What is the difference between register addressing mode and register indirect addressing mode?

Ans: In the register addressing mode the operands are in registers which reside within the CPU. Register-mode instructions are 1-byte instructions and can be executed within the CPU without the need to reference memory for operands. But in the Register-indirect addressing mode the instruction specifies a register or a pair of registers in the processor whose contains give the address of the operand in memory. This mode uses 1-byte instructions even though the operand is in memory. Before using a register-indirect mode instruction, the programmer must ensure that the address of the operand is placed in the processor register with a previous transfer-type instruction. A reference to the register is then equivalent to specifying a memory address.


In which addressing mode the effective address of the operand is generated by adding a constant value to the content of a register?

its register indirect with displacement.


What is increment and auto decrement register addressing mode?

access and update in one instruction.


Can you load Fixed register using immediate addressing mode?

only general perpose use


List different address modes of 8051micro controller with example?

The 8051 microcontroller employs several addressing modes, including: Immediate Addressing Mode: The operand is specified in the instruction itself. Example: MOV A, #25H moves the hexadecimal value 25 into the accumulator. Register Addressing Mode: The operand is in a register. Example: MOV A, R0 moves the content of register R0 into the accumulator. Direct Addressing Mode: The operand's address is given directly in the instruction. Example: MOV A, 30H moves the content of memory location 30H into the accumulator. Indirect Addressing Mode: The address of the operand is held in a register. Example: MOV A, @R1 moves the content of the memory location pointed to by register R1 into the accumulator.