mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-03 08:08:39 -04:00
kern: add SvcQueryIoMapping (NOTE: pre-10.x, ABI needs update)
This commit is contained in:
parent
57867d6ced
commit
18698bf1d3
6 changed files with 204 additions and 2 deletions
|
@ -120,6 +120,14 @@ namespace ams::svc {
|
|||
u32 flags;
|
||||
};
|
||||
|
||||
enum MemoryRegionType {
|
||||
MemoryRegionType_None = 0,
|
||||
MemoryRegionType_KernelTraceBuffer = 1,
|
||||
MemoryRegionType_OnMemoryBootImage = 2,
|
||||
MemoryRegionType_DTB = 3,
|
||||
MemoryRegionType_Count,
|
||||
};
|
||||
|
||||
/* Info Types. */
|
||||
enum InfoType : u32 {
|
||||
InfoType_CoreMask = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue