/* BinXPloder - split a Thomson binary file in separate sections * Copyright 2013, Adrien Destugues * This file is distributed under the terms of the MIT Licence. */ #include #include #include #include #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; }