26 lines
500 B
C
26 lines
500 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include "lzsc.h"
|
|
#include "filedata.h"
|
|
#include "romfile.h"
|
|
|
|
/*
|
|
* $ compress <rom-0-base> <plain-config> <rom-0-outfile>
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct romfile *rom = get_romfile(argv[1], "autoexec.net");
|
|
|
|
struct filedata *config = get_filedata(argv[2]);
|
|
rom->size = lzs_pack(config->data, config->size, rom->data + 0xC, 0x1000);
|
|
|
|
put_romfile(argv[3], rom);
|
|
|
|
free(config);
|
|
free(rom);
|
|
return 0;
|
|
}
|