X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fstruct.c;h=58a35857c4668550fb5b2ecd33eec1fb2c81299a;hb=fd77389ef0a4c9c31228b5f71e9073a11ada9853;hp=7ac58e565227608ec89f863a897ddb4eb5513b35;hpb=d1f82970bf7d41db2fea11b08cd8e308f6cb8138;p=YACASL2.git 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");