1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-09-20 05:53:25 +01:00

Remove homebrew-only NSO extensions.

This commit is contained in:
Pablo Curiel 2020-10-10 11:38:06 -04:00
parent 1de967ed42
commit dcbedbf13a

View file

@ -25,7 +25,6 @@
#define NSO_HEADER_MAGIC 0x4E534F30 /* "NSO0". */
#define NSO_MOD_MAGIC 0x4D4F4430 /* "MOD0". */
#define NSO_LNY_MAGIC 0x4C4E5930 /* "LNY0". */
typedef enum {
NsoFlags_TextCompress = BIT(0), ///< Determines if .text segment is LZ4-compressed.
@ -101,14 +100,6 @@ typedef struct {
s32 module_object_offset; ///< Typically equal to .bss base.
} NsoModHeader;
/// Placed right after the NsoModHeader block (decompressed .text segment only).
/// Only valid if the 'magic' member holds the expected value.
typedef struct {
u32 magic; ///< "LNY0".
u32 got_start_offset;
u32 got_end_offset;
} NsoLnyHeader;
/// Placed at the start of the decompressed .rodata segment + 0x4.
/// If the 'name_length' element is greater than 0, 'name' will hold the module name.
typedef struct {