Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion include/nn/util/util_BinaryFormat.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ struct RelocationTable {
size_t GetSize() const;
};

struct Entry {
u32 file_offset;
u16 num_chunks;
u8 relocated_words_per_chunk;
u8 non_relocated_words_per_chunk;
};

static const int PackedSignature;
BinBlockSignature _signature;
uint32_t _position;
Expand All @@ -95,4 +102,4 @@ struct RelocationTable {
void SetSignature();
};

} // namespace nn::util
} // namespace nn::util
Loading