#include "cf8385.h"
#include "helper.h"
#include <stdio.h>

int main(void) {
    unsigned char t,z;
	long i;
	FILE *sd8385;
	FILE *sd8385_helper;
	sd8385 = fopen("sd8385.bin", "w");
	sd8385_helper = fopen("sd8385_helper.bin", "w");
 
	for (i=0; i < 94944; i++) {
		t = fmimage[i];
		putc(t, sd8385);
	}

	for (i=0; i < 2132; i++) {
		t = helper_image[i];
		putc(t, sd8385_helper);
	}
	fclose(sd8385);
	fclose(sd8385_helper);
}

