Quote:
Originally Posted by eychei
Maybe someone can help me out with this.
|
From what I see,
it is not the plain binary file...
You need parse it...
Code:
typedef struct
{
uint16_t addr; // ??? looks like address, maybe offset
uint16_t length; // how many bytes in data
uint32_t chksum; // 0xffffffff - sum(of all data bytes)
uint8_t data[0x60];
} chunk_t;
typedef struct
{
uint32_t unkn; //
chunk_t chunks[1]; // array of chunk_t blocks
} yourfile_t