X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fcomet2.c;h=47f0b0bd65c5827a5347b05f45f17e73fc4ef93b;hp=82336133842284504213d9c8ff8ada42afb23209;hb=a639337a9aa30a059c1695ab1701b8714fd26193;hpb=4ee27a568fb9222907a566e59aaefe248f08a8e4 diff --git a/src/comet2.c b/src/comet2.c index 8233613..47f0b0b 100644 --- a/src/comet2.c +++ b/src/comet2.c @@ -1,9 +1,15 @@ -#include "casl2.h" -#include "exec.h" +#include +#include #define _GNU_SOURCE #include -/* comet2コマンドのオプション */ +#include "exec.h" +#include "cmem.h" +#include "cerr.h" + +/** + * comet2コマンドのオプション + */ static struct option longopts[] = { {"trace", no_argument, NULL, 't'}, {"tracearithmetic", no_argument, NULL, 't'}, @@ -15,45 +21,26 @@ static struct option longopts[] = { {0, 0, 0, 0} }; -/* comet2のエラー定義 */ -CERR cerr_comet2[] = { - { 201, "load object file - full of COMET II memory" }, +/** + * comet2コマンドのエラー + */ +static CERR cerr_comet2[] = { { 208, "object file is not specified" }, }; -bool addcerrlist_comet2() -{ - return addcerrlist(ARRAYSIZE(cerr_comet2), cerr_comet2); -} - -/* 指定されたファイルからアセンブル結果を読込 */ -bool loadassemble(char *file) { - FILE *fp; - bool status = true; - if((fp = fopen(file, "r")) == NULL) { - perror(file); - return false; - } - progprop->end = progprop->start + - fread(memory, sizeof(WORD), memsize-progprop->start, fp); - if(progprop->end == memsize) { - setcerr(201, NULL); /* Load object file - full of COMET II memory */ - fprintf(stderr, "Execute error - %d: %s\n", cerr->num, cerr->msg); - status = false; - } - fclose(fp); - return status; -} - -/* comet2コマンド */ +/** + * comet2コマンドのメイン + */ int main(int argc, char *argv[]) { - int opt, retval = 0; + int memsize = DEFAULT_MEMSIZE, clocks = DEFAULT_CLOCKS; + int opt, status = 0; const char *usage = "Usage: %s [-tTdh] [-M ] [-C ] FILE\n"; - /* エラーの初期化 */ - cerr = malloc_chk(sizeof(CERR), "cerr"); - addcerrlist_comet2(); + cerr_init(); + addcerrlist(ARRAYSIZE(cerr_comet2), cerr_comet2); + addcerrlist_exec(); + /* オプションの処理 */ while((opt = getopt_long(argc, argv, "tTdM:C:h", longopts, NULL)) != -1) { switch(opt) { @@ -86,19 +73,20 @@ int main(int argc, char *argv[]) fprintf(stderr, "comet2 error - %d: %s\n", cerr->num, cerr->msg); exit(-1); } - reset(); - progprop->start = 0; + /* COMET II仮想マシンのリセット */ + reset(memsize, clocks); + execptr->start = 0; if(loadassemble(argv[optind]) == true) { - create_code_type(); /* 命令と命令タイプがキーのハッシュ表を作成 */ + create_code_type(); /* タイプがキーの命令ハッシュ表を作成 */ exec(); /* プログラム実行 */ - free_code_type(); /* 命令と命令タイプがキーのハッシュ表を解放 */ + free_code_type(); /* タイプがキーの命令ハッシュ表を解放 */ } /* COMET II仮想マシンのシャットダウン */ shutdown(); if(cerr->num > 0) { - retval = -1; + status = -1; } /* エラーの解放 */ freecerr(); - return retval; + return status; }