X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fexec.c;fp=src%2Fexec.c;h=99a01d79fd735f98aa5ff9e04f94ffab0f319192;hp=8b5047e13ffd14a6f8f8a1c60674c6f56a21b967;hb=8808be96beb5502d13c0cd957b9fc3cec72ac6e3;hpb=ea0991b89b1bfe8e1bfa33a2ffec979e702a06dc diff --git a/src/exec.c b/src/exec.c index 8b5047e..99a01d7 100644 --- a/src/exec.c +++ b/src/exec.c @@ -85,14 +85,6 @@ static CERR cerr_exec[] = { { 209, "SVC output - memory overflow" }, }; -/** - * @brief アセンブル結果読み込みエラーの定義 - */ -static CERR cerr_load[] = { - { 210, "load - memory overflow" }, - { 211, "object file not specified" }, -}; - /** * @brief 実行モード: trace, logical, dump, dump_start, dump_end, monitor, step */ @@ -216,11 +208,6 @@ WORD get_val_adr_x(WORD adr, WORD oprx) } /* exec.hで定義された関数群 */ -void addcerrlist_load() -{ - addcerrlist(ARRAYSIZE(cerr_load), cerr_load); -} - void addcerrlist_exec() { addcerrlist(ARRAYSIZE(cerr_exec), cerr_exec);