mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 14:58:22 -04:00
kern: update KMemoryState, remove bijection (separate IoRegister/IoMemory)
This commit is contained in:
parent
3b8f65d502
commit
ae2c25e9c8
8 changed files with 163 additions and 144 deletions
|
@ -112,10 +112,11 @@ namespace ams::svc {
|
|||
};
|
||||
|
||||
enum MemoryAttribute : u32 {
|
||||
MemoryAttribute_Locked = (1 << 0),
|
||||
MemoryAttribute_IpcLocked = (1 << 1),
|
||||
MemoryAttribute_DeviceShared = (1 << 2),
|
||||
MemoryAttribute_Uncached = (1 << 3),
|
||||
MemoryAttribute_Locked = (1 << 0),
|
||||
MemoryAttribute_IpcLocked = (1 << 1),
|
||||
MemoryAttribute_DeviceShared = (1 << 2),
|
||||
MemoryAttribute_Uncached = (1 << 3),
|
||||
MemoryAttribute_PermissionLocked = (1 << 4),
|
||||
};
|
||||
|
||||
enum MemoryMapping : u32 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue