diff options
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 8abd881e3..d16979263 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -14,10 +14,11 @@ | |||
| 14 | namespace Kernel { | 14 | namespace Kernel { |
| 15 | 15 | ||
| 16 | struct StaticAddressMapping { | 16 | struct StaticAddressMapping { |
| 17 | // Address and size must be 4K-aligned | 17 | // Address and size must be page-aligned |
| 18 | VAddr address; | 18 | VAddr address; |
| 19 | u32 size; | 19 | u32 size; |
| 20 | bool writable; | 20 | bool writable; |
| 21 | bool unk_flag; | ||
| 21 | }; | 22 | }; |
| 22 | 23 | ||
| 23 | enum class MemoryRegion { | 24 | enum class MemoryRegion { |