逆アセンブル出力と、マシンコードモニター機能の修正
[YACASL2.git] / src / assemble.c
index 0b075b0..8318d18 100644 (file)
@@ -1,12 +1,4 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <ctype.h>
-#include <assert.h>
-#include <errno.h>
-
 #include "assemble.h"
-#include "cerr.h"
 
 /**
  * @brief ファイルストリームの現在行を番号付きで表示する
@@ -34,7 +26,7 @@ void printline(FILE *stream, const char *filename, int lineno, char *line);
 WORD getadr(const char *prog, const char *str, PASS pass);
 
 /**
- * @brief 汎用レジスタを表す文字列 からレジスタ番号を返す
+ * @brief 汎用レジスタを表す文字列からレジスタ番号を返す
  *
  * @brief 文字列が汎用レジスタを表さない場合は、0xFFFFを返す
  *