Hi
What is Logical address? in the context of programs instrusctions?How we convert to physical adress?

Recommended Answers

All 3 Replies

In the context of a program's instructions it's a non-issue. You access the logical addresses and the operating system will handle the conversion to physical addresses.

Member Avatar for Mouche

There's typically no need to worry about the conversion process as a programmer, but it can be useful if you're trying to understand computer architecture.

A logical address is a memory address that the processor can use to access memory. A physical address is the actual address required by the RAM unit to access the data.

Since we're talking about computer architecture, the way to convert between the two varies for different hardware. Generally you have an hardware unit called an MMU (memory management unit) that handles the conversion between logical and physical addresses. It is a fairly complex process because it takes into account memory protection, caching, paging, etc.

Thanks Sir

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.