summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nso.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-08 07:19:39 +0200
committerGitHub <noreply@github.com>2018-10-08 07:19:39 +0200
commitae982a9bdf75970de1e612d824df3f9cf7f5026b (patch)
tree1a03308eaa5c3c6bf55d6eee761446b925ae04f6 /src/core/loader/nso.h
parentMerge pull request #1396 from DarkLordZach/packed-updates (diff)
parentnso/nro: Use default allocation size for arg_data (diff)
downloadyuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar.gz
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar.bz2
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar.lz
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar.xz
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.tar.zst
yuzu-ae982a9bdf75970de1e612d824df3f9cf7f5026b.zip
Diffstat (limited to 'src/core/loader/nso.h')
-rw-r--r--src/core/loader/nso.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h
index 05353d4d9..70ab3b718 100644
--- a/src/core/loader/nso.h
+++ b/src/core/loader/nso.h
@@ -11,6 +11,15 @@
namespace Loader {
+constexpr u64 NSO_ARGUMENT_DATA_ALLOCATION_SIZE = 0x9000;
+
+struct NSOArgumentHeader {
+ u32_le allocated_size;
+ u32_le actual_size;
+ INSERT_PADDING_BYTES(0x18);
+};
+static_assert(sizeof(NSOArgumentHeader) == 0x20, "NSOArgumentHeader has incorrect size.");
+
/// Loads an NSO file
class AppLoader_NSO final : public AppLoader, Linker {
public:
@@ -27,7 +36,7 @@ public:
return IdentifyType(file);
}
- static VAddr LoadModule(FileSys::VirtualFile file, VAddr load_base,
+ static VAddr LoadModule(FileSys::VirtualFile file, VAddr load_base, bool should_pass_arguments,
boost::optional<FileSys::PatchManager> pm = boost::none);
ResultStatus Load(Kernel::Process& process) override;