diff options
author | bunnei <bunneidev@gmail.com> | 2017-10-14 23:31:25 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-10-14 23:31:25 +0200 |
commit | e98a3ca171a53d61d2250b1188f74743d96d595c (patch) | |
tree | 03fd62a69aee2c7e8e27eefc8cb0eab1b86568f0 | |
parent | svc: Initial nx impl. for QueryMemory, ConnectToPort, SendSyncRequest, etc. (diff) | |
download | yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.gz yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.bz2 yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.lz yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.xz yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.tar.zst yuzu-e98a3ca171a53d61d2250b1188f74743d96d595c.zip |
Diffstat (limited to '')
-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 @@ // SVC types struct MemoryInfo { - u32 base_address; - u32 size; - u32 permission; - u32 state; + u64 base_address; + u64 size; + u64 permission; + u64 state; }; struct PageInfo { - u32 flags; + u64 flags; }; //////////////////////////////////////////////////////////////////////////////////////////////////// |