aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/vm_manager.cpp
Commit message (Collapse)AuthorAge
* Core: Properly configure address space when loading a binaryGravatar Yuri Kunde Schlesner2015-07-11
| | | | | | The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
* Core: Cleanup core includes.Gravatar Emmanuel Gil Peyrot2015-06-28
|
* Kernel: Add VMManager to manage process address spacesGravatar Yuri Kunde Schlesner2015-05-27
This enables more dynamic management of the process address space, compared to just directly configuring the page table for major areas. This will serve as the foundation upon which the rest of the Kernel memory management functions will be built.