diff options
| author | 2017-10-14 17:31:25 -0400 | |
|---|---|---|
| committer | 2017-10-14 17:31:25 -0400 | |
| commit | e98a3ca171a53d61d2250b1188f74743d96d595c (patch) | |
| tree | 03fd62a69aee2c7e8e27eefc8cb0eab1b86568f0 /src/core | |
| parent | svc: Initial nx impl. for QueryMemory, ConnectToPort, SendSyncRequest, etc. (diff) | |
| download | yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.gz yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.xz yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.zip | |
svc: Update MemoryInfo flags for 64-bit.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/svc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/svc.h b/src/core/hle/svc.h index 818973eb6..993c074bf 100644 --- a/src/core/hle/svc.h +++ b/src/core/hle/svc.h | |||
| @@ -10,14 +10,14 @@ | |||
| 10 | // SVC types | 10 | // SVC types |
| 11 | 11 | ||
| 12 | struct MemoryInfo { | 12 | struct MemoryInfo { |
| 13 | u32 base_address; | 13 | u64 base_address; |
| 14 | u32 size; | 14 | u64 size; |
| 15 | u32 permission; | 15 | u64 permission; |
| 16 | u32 state; | 16 | u64 state; |
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| 19 | struct PageInfo { | 19 | struct PageInfo { |
| 20 | u32 flags; | 20 | u64 flags; |
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 23 | //////////////////////////////////////////////////////////////////////////////////////////////////// |