mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
57 lines
No EOL
1.2 KiB
C++
57 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/types.h>
|
|
#include <crypto/aes.h>
|
|
#include <crypto/sha.h>
|
|
#include <fnd/ISerialiseableBinary.h>
|
|
|
|
namespace nx
|
|
{
|
|
namespace npdm
|
|
{
|
|
const std::string kNpdmStructSig = "META";
|
|
static const size_t kNameMaxLen = 0x10;
|
|
static const size_t kProductCodeMaxLen = 0x10;
|
|
static const uint32_t kMaxPriority = BIT(6) -1 ;
|
|
static const size_t kNpdmAlignSize = 0x10;
|
|
static const uint32_t kDefaultMainThreadStackSize = 4096;
|
|
|
|
enum InstructionType
|
|
{
|
|
INSTR_32BIT,
|
|
INSTR_64BIT,
|
|
};
|
|
|
|
enum ProcAddrSpaceType
|
|
{
|
|
ADDR_SPACE_64BIT = 1,
|
|
ADDR_SPACE_32BIT,
|
|
ADDR_SPACE_32BIT_NO_RESERVED,
|
|
};
|
|
}
|
|
#pragma pack(push,1)
|
|
|
|
struct sNpdmHeader
|
|
{
|
|
char signature[4];
|
|
byte_t reserved_0[8];
|
|
byte_t flags;
|
|
byte_t reserved_1;
|
|
byte_t main_thread_priority;
|
|
byte_t main_thread_cpu_id;
|
|
byte_t reserved_2[8];
|
|
le_uint32_t version;
|
|
le_uint32_t main_thread_stack_size;
|
|
char name[npdm::kNameMaxLen]; // important
|
|
char product_code[npdm::kProductCodeMaxLen]; // can be empty
|
|
byte_t reserved_3[48];
|
|
// Access Control Info
|
|
struct sNpdmSection
|
|
{
|
|
le_uint32_t offset;
|
|
le_uint32_t size;
|
|
} aci, acid;
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
} |