answersLogoWhite

0

Direct memory addressing is like a long carrott inside a dirty butt hole<---------Srew YOU douchbag!!.....can somebody answer that properly...thank you!

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is Direct Addressing in computer systems architecture?

Direct Addressing in computer systems architecture is when the number in the address field of the instruction is the actual memory address to be accessed.


What is difference between direct addressing and indirect addressing in c plus plus?

Indirect addressing uses a pointer. Indirectly accessing the memory being pointed at is known as dereferencing. Direct addressing uses a variable's name or a reference to obtain the value.


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 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 is defference between direct and indirect address?

The I bit is 0 so the instruction is recognice as a direct address instruction The indirect address instruction needs 2 referance to memory to fetch &amp; opened The I bit is 1 so the instruction is recognice as a indirect address instructionhe


What addressing mode could be used to add the contents of a memory location to the contents of accumulator A?

To add the contents of a memory location to the contents of accumulator A, the direct addressing mode can be used. In this mode, the instruction specifies the actual memory address where the operand is located. The processor retrieves the value from that memory address and adds it directly to the contents of accumulator A. This method allows for straightforward access to the operand stored in memory.


How many addressing mode of 8086 assembly language program?

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


What are the different types of addressing modes?

literal and absolute direct are the registers


What do you mean direct memory acess?

direct data transfer between input and output device on the memory is called as direct memory acess


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

register direct addressing mode


What is double addressing in microprocessor?

Double addressing in microprocessors refers to a situation where two different addresses are used to access the same memory location or resource. This can occur in scenarios involving multiple data buses or when both direct and indirect addressing modes are employed. It can lead to increased complexity in memory management and may result in ambiguous data retrieval if not handled carefully. Proper management of addressing schemes is crucial to ensure data integrity and optimal performance in microprocessor operations.


Difference between direct addressing mode and indirect addressing mode in detail?

Direct addressing mode means the operand address is contained in the instruction. In the 8085, an example is LDA 1234H, which loads the accumulator with the contents of memory location 1234H. In the 8086/8088, an example is MOV AL,[1234H], which accomplishes nearly the same thing.Indirect addressing mode means the operand address is contained in a register. In the 8085, an example is LDAX B, which loads the accumulator with the contents of the memory location specified in register BC. In the 8086/8088, an example is MOV AL,[BX], which accomplishes nearly the same thing.