-bオプションを-mオプションへ変更
[YACASL2.git] / src / monitor.c
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;