How can I access the first 1MB of RAM in Windows programming (Protected Mode)?

318 Views Asked by At

How can I access the first 1 MB of RAM directly in Windows programming (Protected Mode)?

For example to write to the video part.

Can I use DPMI to solve all problems?

1

There are 1 best solutions below

0
On

No, a regular (=user-mode) application can't access directly the physical address space (the address space each application sees is a virtual address space, managed by the OS via the MMU). The whole point of having an operating system is to abstract the hardware details and present to applications a clean programmatic interface, if you want to draw onscreen you should use the graphic libraries provided by Windows (GDI, DirectX).

You can access almost any hardware resource if you write a driver that runs in kernel mode, but if you don't follow carefully the rules of Windows kernel-mode programming you are probably going to make the whole system crash with a BSOD in no time.

If you are talking about video RAM and DPMI I suppose you are coming from some book/tutorial about DOS-style programming (or even without any operating system at all); keep in mind that almost nothing of that stuff is applicable in the context of any modern operating system, because it's not only your code that is running, so you must cooperate and follow the rules/use the APIs of the OS.