X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=zilasm%2Fmain.c;h=811a6dff447195fdce942b554b07f64cf821acf3;hb=401614e8f9e8e1d29ccbf64fbc99e3cdd3e37570;hp=daa943c7919c76808084a9eba2926fe558b82258;hpb=05f035a384b15e5fba9e93ff501159fc8397a5e5;p=zilutils.git diff --git a/zilasm/main.c b/zilasm/main.c index daa943c..811a6df 100644 --- a/zilasm/main.c +++ b/zilasm/main.c @@ -34,11 +34,11 @@ static struct option const long_options[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'V' }, + { "output", required_argument, NULL, 'o' }, { "zversion", required_argument, NULL, ZVERSION }, { "zorkid", required_argument, NULL, ZORKID }, { "serial", required_argument, NULL, ZSERIAL }, { NULL, 0, NULL, 0 } - }; struct @@ -144,10 +144,13 @@ void parse_zserial(void) int main(int argc, char *argv[], char *envp[]) { + const char *output_file = NULL; + int i; + fill_config(); int opt = 0; - while ((opt = getopt_long (argc, argv, "hV", long_options, NULL)) != -1) + while ((opt = getopt_long (argc, argv, "hVo:", long_options, NULL)) != -1) { switch(opt) { @@ -155,6 +158,10 @@ int main(int argc, char *argv[], char *envp[]) print_usage(0); case 'V' : print_version(); + case 'o' : + if (output_file) wrong_arg("Output file must be given once\n"); + output_file = optarg; + break; case ZVERSION: parse_intarg(&Config.zversion, "zversion", 1, 8, 1); break; @@ -171,6 +178,12 @@ int main(int argc, char *argv[], char *envp[]) // TODO: Everything :) + printf("Input files:\n"); + for (i = optind; i < argc; i++) + printf("\t%s\n", argv[i]); + + printf("Output file: %s\n\n", output_file ? output_file : "MISSING"); + printf("Config:\n" "- ZVersion: %d\n" "- ZorkID: %d\n"