mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-20 09:55:07 -04:00
Loader: Implement mappable-region locating functions.
This commit is contained in:
parent
5e5dd530c7
commit
6afd59d2a2
2 changed files with 189 additions and 0 deletions
9
stratosphere/loader/source/ldr_map.hpp
Normal file
9
stratosphere/loader/source/ldr_map.hpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
#include <switch.h>
|
||||
|
||||
class MapUtils {
|
||||
public:
|
||||
static Result LocateSpaceForMapDeprecated(u64 *out, u64 out_size);
|
||||
static Result LocateSpaceForMapModern(u64 *out, u64 out_size);
|
||||
static Result LocateSpaceForMap(u64 *out, u64 out_size);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue