mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
45 lines
No EOL
866 B
C++
45 lines
No EOL
866 B
C++
#pragma once
|
|
#include <fnd/types.h>
|
|
#include <nn/hac/define/macro.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
namespace nro
|
|
{
|
|
static const uint32_t kNroStructMagic = _MAKE_STRUCT_MAGIC_U32("NRO0");
|
|
static const uint32_t kDefaultFormatVersion = 0;
|
|
static const size_t kRoCrtSize = 8;
|
|
static const size_t kModuleIdSize = 32;
|
|
}
|
|
|
|
#pragma pack(push,1)
|
|
struct sNroSection
|
|
{
|
|
le_uint32_t memory_offset;
|
|
le_uint32_t size;
|
|
};
|
|
|
|
struct sNroHeader
|
|
{
|
|
byte_t ro_crt[nro::kRoCrtSize];
|
|
byte_t reserved_0[8];
|
|
le_uint32_t st_magic;
|
|
le_uint32_t format_version;
|
|
le_uint32_t size;
|
|
le_uint32_t flags;
|
|
sNroSection text;
|
|
sNroSection ro;
|
|
sNroSection data;
|
|
le_uint32_t bss_size;
|
|
byte_t reserved_1[4];
|
|
byte_t module_id[nro::kModuleIdSize];
|
|
byte_t reserved_2[8];
|
|
sNroSection embedded;
|
|
sNroSection dyn_str;
|
|
sNroSection dyn_sym;
|
|
};
|
|
#pragma pack(pop)
|
|
}
|
|
} |