14 static struct option longopts[] = {
15 {"trace", no_argument, NULL, 't'},
16 {"tracearithmetic", no_argument, NULL, 't'},
17 {"tracelogical", no_argument, NULL, 'T'},
18 {"dump", no_argument, NULL, 'd'},
19 {"memorysize", required_argument, NULL, 'M'},
20 {"clocks", required_argument, NULL, 'C'},
21 { "version", no_argument, NULL, 'v' },
22 {"help", no_argument, NULL, 'h'},
27 * @brief comet2コマンドのメイン
29 * @return 正常終了時は0、異常終了時は1
31 * @param argc コマンドライン引数の数
32 * @param *argv[] コマンドライン引数の配列
34 int main(int argc, char *argv[])
36 int memsize = DEFAULT_MEMSIZE, clocks = DEFAULT_CLOCKS;
38 const char *version = PACKAGE_VERSION, *cmdversion = "comet2 of YACASL2 version %s\n";
39 const char *usage = "Usage: %s [-tTdvh] [-M <MEMORYSIZE>] [-C <CLOCKS>] FILE\n";
46 while((opt = getopt_long(argc, argv, "tTdM:C:vh", longopts, NULL)) != -1) {
49 execmode.trace = true;
52 execmode.trace = true;
53 execmode.logical = true;
59 memsize = atoi(optarg);
62 clocks = atoi(optarg);
65 fprintf(stdout, cmdversion, version);
68 fprintf(stdout, usage, argv[0]);
71 fprintf(stderr, usage, argv[0]);
75 if(argv[optind] == NULL) {
76 setcerr(211, ""); /* object file not specified */
77 fprintf(stderr, "comet2 error - %d: %s\n", cerr->num, cerr->msg);
80 /* COMET II仮想マシンのリセット */
81 reset(memsize, clocks);
83 if(loadassemble(argv[optind]) == true) {
86 /* COMET II仮想マシンのシャットダウン */
88 stat = (cerr->num == 0) ? 0 : 1;