blob: 0ca4f84fb155c41c7917fd491394a2727c688c36 [file] [log] [blame]
/* BinXPloder - split a Thomson binary file in separate sections
* Copyright 2013, Adrien Destugues <pulkomandy@pulkomandy.tk>
* This file is distributed under the terms of the MIT Licence.
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "decb.cpp"
int main(int argc, char* argv[])
{
if (argc < 2)
{
fprintf(stderr, "%s file.bin\n", argv[0]);
return 1;
}
FILE* f1, * f2;
uint8_t i = 0;
DECB_Chunk h;
f1 = fopen(argv[1], "rb");
char* buf = (char*)malloc(strlen(argv[1] + 3));
while(DECB_ReadChunk(f1, h))
{
printf("Type: %02x - Size: %04x - Load: %04x\n", h.type, h.length, h.addr);
sprintf(buf, "%s.%02x", argv[1], i++);
f2 = fopen(buf, "wb");
fwrite(&h.data[0], h.length, 1, f2);
fclose(f2);
}
free(buf);
fclose(f1);
return 0;
}