answersLogoWhite

0


Best Answer

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

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is direct memory addressing?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

Direct addressing involves specifying the exact memory address where data is stored or fetched. Indirect addressing involves using a memory address that points to where the data is stored or fetched. In direct addressing, the actual data is accessed, while in indirect addressing, a reference to the data's location is accessed.


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 is addressing mode of 'inx' instruction in 8085?

register direct addressing mode


What is the addressing mode used in instruction LXIB 0345 H?

Direct addressing mode


What is addressing mode in memory management?

punched card


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.


What are the common addressing techniques used by CPU?

direct


Difference between direct addressing mode and indirect addressing modein8085 microprocessor?

When a microprocessor wants to store a byte of information in memory, or retrieve a byte of information from memory, it needs to refer to the address of the byte in the instruction. When direct addressing is used then the microprocessor instruction refers explicitly to the address that is to be used. When indirect addressing is used then the microprocessor instruction refers to a third object that refers to the address that is to be used. So, for example: Direct addressing: (*) Store the data at address 0x3C6E (*) Deliver the letter to house 12 on the street. Indirect addressing: (*) Store the data at whatever address is in register AX. (*) Deliver the letter to whichever house the occupant of house 7 tells you. So, in indirect addressing, the microprocessor instruction refers to some other "third-party" location (a register or another memory location) to find-out what the ultimate address to be used should be. The instruction does not contain all of the information needed to store the byte (or deliver the letter) but it does say where the missing information can be found. In direct addressing, the instruction contains all of the information needed to store the byte (or deliver the letter). This is basically true for all microprocessors but different microprocessors allow different forms of indirect addressing. For example, some use memory indirect addressing (the third party is another memory location), and some use register indirect addressing (the third party is a register).