READMEのCASL II仕様書へのリンクを修正
[YACASL2.git] / include / monitor.h
index 3530061..fe7e1cd 100644 (file)
@@ -1,14 +1,12 @@
-#ifndef MONITOR_INCLUDE
-#define MONITOR_INCLUDE
+#ifndef YACASL2_MONITOR_H_INCLUDE
+#define YACASL2_MONITOR_H_INCLUDE
 
 #include <stdio.h>
 #include <string.h>
 #include <assert.h>
-#include "hash.h"
-#include "cmem.h"
-#include "cerr.h"
+#include "assemble.h"
 #include "exec.h"
-#include "word.h"
+#include "load.h"
 
 /**
  * @brief モニター
@@ -130,4 +128,11 @@ bool delbps(WORD adr);
  */
 void freebps();
 
-#endif        /* end of MONITOR_INCLUDE */
+/**
+ * @brief COMET IIモニターを起動する
+ *
+ * @return なし
+ */
+void monitor();
+
+#endif