X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fstruct.c;h=58a35857c4668550fb5b2ecd33eec1fb2c81299a;hp=7ac58e565227608ec89f863a897ddb4eb5513b35;hb=456e72090c786b40ac10ee984617afc054555f4d;hpb=d1f82970bf7d41db2fea11b08cd8e308f6cb8138 diff --git a/src/struct.c b/src/struct.c index 7ac58e5..58a3585 100644 --- a/src/struct.c +++ b/src/struct.c @@ -1,13 +1,19 @@ #include "struct.h" #include "cmem.h" -/* COMET IIの仮装実行マシンシステム */ +/** + * COMET IIの仮装実行マシンシステム + */ SYSTEM *sys; -/* CASL IIプログラムのプロパティ */ +/** + * CASL IIプログラムのプロパティ + */ PROGPROP *prog; -/* COMET II仮想マシンのリセット */ +/** + * COMET II仮想マシンのリセット + */ void reset(int memsize, int clocks) { int i; @@ -29,7 +35,9 @@ void reset(int memsize, int clocks) prog = malloc_chk(sizeof(PROGPROP), "prog"); } -/* COMET II仮想マシンのシャットダウン */ +/** + * COMET II仮想マシンのシャットダウン + */ void shutdown() { free_chk(prog, "prog");