mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 05:45:46 +00:00
svc: Update MemoryInfo flags for 64-bit.
This commit is contained in:
parent
bdc3ccc8ac
commit
8a19114047
1 changed files with 5 additions and 5 deletions
|
@ -10,14 +10,14 @@
|
||||||
// SVC types
|
// SVC types
|
||||||
|
|
||||||
struct MemoryInfo {
|
struct MemoryInfo {
|
||||||
u32 base_address;
|
u64 base_address;
|
||||||
u32 size;
|
u64 size;
|
||||||
u32 permission;
|
u64 permission;
|
||||||
u32 state;
|
u64 state;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PageInfo {
|
struct PageInfo {
|
||||||
u32 flags;
|
u64 flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue