オプション修正。dumpmemoryで開始、終了のアドレスを指定できるように
[YACASL2.git] / include / exec.h
index f081089..fb8e6b3 100644 (file)
@@ -3,9 +3,13 @@
 
 #include <stdbool.h>
 #include <stdio.h>
+#include <assert.h>
+#include <time.h>
 #include "struct.h"
 #include "word.h"
 #include "cmem.h"
+#include "cerr.h"
+#include "monitor.h"
 
 enum {
     INSIZE = 256    /**<IN命令の、入力領域 */
@@ -370,8 +374,11 @@ void svc();
  * @brief COMET IIのメモリを表示する
  *
  * @return なし
+ *
+ * @param start 表示の開始アドレス
+ * @param end 表示の終了アドレス
  */
-void dumpmemory();
+void dumpmemory(WORD start, WORD end);
 
 /**
  * @brief COMET IIのレジスタを表示する
@@ -390,10 +397,10 @@ void dspregister();
 bool disassemble_file(const char *file);
 
 /**
- * @brief COMET IIã\83\87ã\83\90ã\83\83ã\82¬ーを起動する
+ * @brief COMET IIã\83¢ã\83\8bã\82¿ーを起動する
  *
  * @return なし
  */
-void debugger();
+void monitor();
 
 #endif            /* YACASL2_EXEC_INCLUDEDの終端 */