diff options
| author | 2017-05-05 23:11:06 -0700 | |
|---|---|---|
| committer | 2017-05-09 21:44:00 -0700 | |
| commit | f18d454eb6a6912b93664ee43b7f377a9ddd0215 (patch) | |
| tree | 013c3e9a5f63d7c8c110bf9a76cc90923ada15ce /src/core/hle/kernel/process.h | |
| parent | DSP: Create backing memory for entire DSP RAM (diff) | |
| download | yuzu-f18d454eb6a6912b93664ee43b7f377a9ddd0215.tar.gz yuzu-f18d454eb6a6912b93664ee43b7f377a9ddd0215.tar.xz yuzu-f18d454eb6a6912b93664ee43b7f377a9ddd0215.zip | |
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 { | |||
| 20 | // Address and size must be page-aligned | 20 | // Address and size must be page-aligned |
| 21 | VAddr address; | 21 | VAddr address; |
| 22 | u32 size; | 22 | u32 size; |
| 23 | bool writable; | 23 | bool read_only; |
| 24 | bool unk_flag; | 24 | bool unk_flag; |
| 25 | }; | 25 | }; |
| 26 | 26 | ||