From 87f1e8bee62d2bf04f2d2cb123e5639e2a2cd9ba Mon Sep 17 00:00:00 2001 From: j8takagi Date: Sun, 6 Mar 2011 23:14:03 +0900 Subject: [PATCH] =?utf8?q?=E3=82=BD=E3=83=BC=E3=82=B9=E3=81=AE=E3=82=B3?= =?utf8?q?=E3=83=A1=E3=83=B3=E3=83=88=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- include/struct.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/struct.h b/include/struct.h index f98de14..88ceb16 100644 --- a/include/struct.h +++ b/include/struct.h @@ -8,7 +8,7 @@ */ enum { CMDSIZE = 4, /**<命令の最大文字数 */ - GRSIZE = 8, /**<汎用レジスタの数。COMET II規格により0から7までの8つ */ + GRSIZE = 8, /**<汎用レジスタの数。COMET II規格では、8(0から7) */ DEFAULT_MEMSIZE = 512, /**<デフォルトのメモリ容量。COMET II規格では、65535語(word) */ DEFAULT_CLOCKS = 5000000, /**<デフォルトのクロック周波数。COMET II規格では、未定義 */ }; @@ -58,7 +58,7 @@ typedef enum { R_ADR_X = 010, /** * オペランド数2または3 - * 第1オペランド: 汎用レジスタ、 + * 第1オペランド: 汎用レジスタ * 第2オペランド: アドレスに格納されている内容 * 第3オペランド: 指標レジスタ */ @@ -99,7 +99,7 @@ typedef struct { * 命令コードのハッシュ表 */ typedef struct _CMDTAB { - struct _CMDTAB *next; /**<次項目へのポインタ */ + struct _CMDTAB *next; /**<リスト次項目へのポインタ */ CMD *cmd; /**<命令コード表の項目 */ } CMDTAB; -- 2.18.0