FreeCalypso > hg > fc-am-toolkit
view bootmatch/comp_main.c @ 30:2d60f9a3032b default tip
LICENSE: public domain, copied from freecalypso-tools
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 24 Jun 2023 04:24:38 +0000 |
parents | bfcc8180cf3c |
children |
line wrap: on
line source
/* * This C module is the main for our bootmatch compiler. */ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include "comp_defs.h" u_char boot_image[BOOT_BLOCK_SIZE]; struct range range_list[MAX_RANGES]; unsigned range_count; char *output_array_name; main(argc, argv) char **argv; { if (argc != 5) { fprintf(stderr, "usage: %s bin-file ranges-file array-name output-file\n", argv[0]); exit(1); } read_bin_file(argv[1]); read_ranges_file(argv[2]); output_array_name = argv[3]; emit_output_file(argv[4]); exit(0); }