mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-30 08:36:25 +02:00
Add support for PermissionLocked attribute added on firmware 17.0.0 (#6072)
* Update MemoryState enum and add new flags * Add support for new PermissionLocked attribute added on firmware 17.0.0 * Format whitespace
This commit is contained in:
parent
f11d663df7
commit
6f50b9bdb0
4 changed files with 172 additions and 35 deletions
|
@ -12,11 +12,10 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||
IpcMapped = 1 << 1,
|
||||
DeviceMapped = 1 << 2,
|
||||
Uncached = 1 << 3,
|
||||
PermissionLocked = 1 << 4,
|
||||
|
||||
IpcAndDeviceMapped = IpcMapped | DeviceMapped,
|
||||
|
||||
BorrowedAndIpcMapped = Borrowed | IpcMapped,
|
||||
|
||||
DeviceMappedAndUncached = DeviceMapped | Uncached,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue