diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-05 23:11:06 -0700 |
|---|---|---|
| committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-09 21:44:00 -0700 |
| commit | f18d454eb6a6912b93664ee43b7f377a9ddd0215 (patch) | |
| tree | 013c3e9a5f63d7c8c110bf9a76cc90923ada15ce /src/core/hle/kernel/process.h | |
| parent | b4a93cfddecdb939562e56d7609657d2f14b6702 (diff) | |
Kernel: Map special regions according to ExHeader
This replaces the hardcoded VRAM/DSP mappings with ones made based on
the ExHeader ARM11 Kernel caps list. While this has no visible effect
for most applications (since they use a standard set of mappings) it
does improve support for system modules and n3DS exclusives.
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index b566950b0..b52211d2a 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -20,7 +20,7 @@ struct AddressMapping { // Address and size must be page-aligned VAddr address; u32 size; - bool writable; + bool read_only; bool unk_flag; }; |
