diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2018-06-21 11:16:23 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-06-21 11:16:23 -0400 |
commit | 63f26d5c40adb49094b03b232528672f526afe49 (patch) | |
tree | b76a154e17c819df7803d5860f08406446507a5c /src/core/loader/nso.h | |
parent | c3e95086b66dfa4214892dcddb9fd6f865037c1e (diff) |
Add support for decrypted NCA files (#567)
* Start to add NCA support in loader
* More nca stuff
* More changes to nca.cpp
* Now identifies decrypted NCA cont.
* Game list fixes and more structs and stuff
* More updates to Nca class
* Now reads ExeFs (i think)
* ACTUALLY LOADS EXEFS!
* RomFS loads and games execute
* Cleanup and Finalize
* plumbing, cleanup and testing
* fix some things that i didnt think of before
* Preliminary Review Changes
* Review changes for bunnei and subv
Diffstat (limited to 'src/core/loader/nso.h')
-rw-r--r-- | src/core/loader/nso.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h index 1ae30a824..386f4d39a 100644 --- a/src/core/loader/nso.h +++ b/src/core/loader/nso.h @@ -29,6 +29,9 @@ public: return IdentifyType(file, filepath); } + static VAddr LoadModule(const std::string& name, const std::vector<u8>& file_data, + VAddr load_base); + static VAddr LoadModule(const std::string& path, VAddr load_base); ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override; |