summaryrefslogtreecommitdiff
path: root/src/core/loader/nso.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-09-30 14:04:48 -0400
committerGravatar Zach Hilman2018-10-07 14:30:15 -0400
commite09505ff6147815d7d3c7adcc0d260638cf49706 (patch)
treea430bbf3af585ac0e117c28b5782ee9556a2895a /src/core/loader/nso.h
parentMerge pull request #1396 from DarkLordZach/packed-updates (diff)
downloadyuzu-e09505ff6147815d7d3c7adcc0d260638cf49706.tar.gz
yuzu-e09505ff6147815d7d3c7adcc0d260638cf49706.tar.xz
yuzu-e09505ff6147815d7d3c7adcc0d260638cf49706.zip
nso/nro: Add NSO arguments structure to data section
Only added if arguments string is non-empty and a pass is requested by loader.
Diffstat (limited to 'src/core/loader/nso.h')
-rw-r--r--src/core/loader/nso.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h
index 05353d4d9..7833af6ee 100644
--- a/src/core/loader/nso.h
+++ b/src/core/loader/nso.h
@@ -11,6 +11,13 @@
11 11
12namespace Loader { 12namespace Loader {
13 13
14struct NSOArgumentHeader {
15 u32_le allocated_size;
16 u32_le actual_size;
17 INSERT_PADDING_BYTES(0x18);
18};
19static_assert(sizeof(NSOArgumentHeader) == 0x20, "NSOArgumentHeader has incorrect size.");
20
14/// Loads an NSO file 21/// Loads an NSO file
15class AppLoader_NSO final : public AppLoader, Linker { 22class AppLoader_NSO final : public AppLoader, Linker {
16public: 23public:
@@ -27,7 +34,7 @@ public:
27 return IdentifyType(file); 34 return IdentifyType(file);
28 } 35 }
29 36
30 static VAddr LoadModule(FileSys::VirtualFile file, VAddr load_base, 37 static VAddr LoadModule(FileSys::VirtualFile file, VAddr load_base, bool should_pass_arguments,
31 boost::optional<FileSys::PatchManager> pm = boost::none); 38 boost::optional<FileSys::PatchManager> pm = boost::none);
32 39
33 ResultStatus Load(Kernel::Process& process) override; 40 ResultStatus Load(Kernel::Process& process) override;