answersLogoWhite

0

i.e.-->mov ax,2000h (in 8086)

User Avatar

Wiki User

12y 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


Can you load Fixed register using immediate addressing mode?

only general perpose use


What are the different data addressing modes available in 8086?

The 8086 microprocessor supports several data addressing modes, including immediate, direct, indirect, indexed, and based addressing modes. In immediate addressing, the operand is specified directly in the instruction. Direct addressing involves providing the memory address of the operand. Indirect addressing uses a pointer in a register to reference the operand's memory location, while indexed addressing combines a base address with an offset from an index register. Additionally, based addressing uses a base register to locate the operand in memory.


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


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


MOV Cx 1234H instruction belongs to which addressing mode?

The instruction MOV Cx, 1234H uses the immediate addressing mode. In this mode, the operand (1234H) is specified directly within the instruction itself. The value 1234H is moved directly into the CX register, making it an example of immediate data being loaded into a register.


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 are the adressing modes of 8085 microprocessor?

Different Addressing modes are: 1. Direct Addressing Mode 2. Indirect Addressing Mode 3. Immediate Addressing Mode 4. Register Addressing Mode 5. Implicit Addressing Mode Immediate addressing Data is present in the instruction. Load the immediate data to the destination provided. Example: MVI R,data Register addressing Data is provided through the registers. Example: MOV Rd, Rs Direct addressing Used to accept data from outside devices to store in the accumulator or send the data stored in the accumulator to the outside device. Accept the data from the port 00H and store them into the accumulator or Send the data from the accumulator to the port 01H. Example: IN 00H or OUT 01H Indirect Addressing This means that the Effective Address is calculated by the processor. And the contents of the address (and the one following) is used to form a second address. The second address is where the data is stored. Note that this requires several memory accesses; two accesses to retrieve the 16-bit address and a further access (or accesses) to retrieve the data which is to be loaded into the register.


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.


What is register addressing mode?

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


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

register direct addressing mode


Write comparisons based on the following parameters of instruction set architecture between Intel and mips architecture?

Dear, Class of ISA ( Instruction Set Architecture ) INTEL : The complete Intel Architecture instruction set includes the integer, floating-point, MMX technology, and system instructions. The instruction descriptions are arranged in alphabetical order. For each instruction, the forms are given for each operand combination, including the opcode, operands required, and a description. Also given for each instruction are a description of the instruction and its operands, an operational description, a description of the effect of the instructions on flags in the EFLAGS register, and a summary of the exceptions that can be generated. MIPS instructions fall into 5 classes: Arithmetic/logical/shift/comparison Control instructions (branch and jump) Load/store Other (exception, register movement to/from GP registers, etc.) Memory Addressing & Addressing modes :Intel : The addressing modes in Intel are, Immediate addressing mode Register addressing Direct addressing Indirect addressing Indexed MIPS has 5 ways of addressing data Immediate: data is in instruction itself Register: register number in instruction tells which register contains data Base/offset: offset value added to base register PC-relative: offset added to PC Pseudo direct: offset from instruction merged with PC Type and size of Operands :Intel : Dear, Class of ISA ( Instruction Set Architecture )INTEL : The complete Intel Architecture instruction set includes the integer, floating-point, MMX technology, and system instructions. The instruction descriptions are arranged in alphabetical order. For each instruction, the forms are given for each operand combination, including the opcode, operands required, and a description. Also given for each instruction are a description of the instruction and its operands, an operational description, a description of the effect of the instructions on flags in the EFLAGS register, and a summary of the exceptions that can be generated. MIPS instructions fall into 5 classes: Arithmetic/logical/shift/comparison Control instructions (branch and jump) Load/store Other (exception, register movement to/from GP registers, etc.) Memory Addressing & Addressing modes :Intel : The addressing modes in Intel are, Immediate addressing mode Register addressing Direct addressing Indirect addressing Indexed MIPS has 5 ways of addressing data Immediate: data is in instruction itself Register: register number in instruction tells which register contains data Base/offset: offset value added to base register PC-relative: offset added to PC Pseudo direct: offset from instruction merged with PC Type and size of Operands :Intel : In general it supports 16 bit instructions and can be extendable upto 32 bit. MIPS : The type of operands that it can handle are bit string, character, decimal, integers and floating point numbers. The size of operands in Intel are 8-bit, 16-bit, 32-bit integers and 32-bit and 64-bit IEEE 754 floating-point. Control Flow Instructions : Intel : Branch and Jump instructions MIPS : BRANCH and JUMP are the control instructions in MIPS " I hope this will help you"