-bオプションを-mオプションへ変更
authorj8takagi <j8takagi@nifty.com>
Mon, 2 Jul 2018 10:36:09 +0000 (19:36 +0900)
committerj8takagi <j8takagi@nifty.com>
Mon, 2 Jul 2018 10:36:09 +0000 (19:36 +0900)
src/casl2.c
src/comet2.c
src/monitor.c

index 216496e..b54639e 100644 (file)
@@ -165,7 +165,7 @@ int main(int argc, char *argv[])
         case 'd':
             execmode.dump = true;
             break;
-        case 'b':
+        case 'm':
             execmode.step = true;
             break;
         case 'M':
index 2422c00..a8135c3 100644 (file)
@@ -45,7 +45,7 @@ int main(int argc, char *argv[])
         case 'd':
             execmode.dump = true;
             break;
-        case 'b':
+        case 'm':
             execmode.step = true;
             break;
         case 'M':
index 4fcd425..e0c7dc4 100644 (file)
@@ -5,25 +5,6 @@
  */
 static BPSLIST *bps[BPSTABSIZE];
 
-/**
- * @brief ブレークポイントのエラー
- */
-static CERR cerr_bps[] = {
-    { 101, "break point already defined" },
-    { 102, "break point table is full" },
-    { 103, "break point not found" },
-    { 104, "break point address not set" },
-    { 105, "illegal break point address" },
-};
-
-/**
- * @brief ブレークポイントのエラーをエラーリストに追加する
- *
- * @return なし
- */
-void addcerrlist_bps();
-
-
 unsigned adrhash(WORD adr)
 {
     HKEY *key[1];
@@ -36,11 +17,6 @@ unsigned adrhash(WORD adr)
     return h;
 }
 
-void addcerrlist_bps()
-{
-    addcerrlist(ARRAYSIZE(cerr_bps), cerr_bps);
-}
-
 bool getbps(WORD adr)
 {
     BPSLIST *p;