From c7d676ce0fb72d31190b926771123b2f590edbca Mon Sep 17 00:00:00 2001 From: j8takagi Date: Thu, 13 Jan 2011 18:52:53 +0900 Subject: [PATCH] =?utf8?q?=E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3?= =?utf8?q?=E3=83=88=E3=81=AE=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- doc/graph/.gitignore | 1 + doc/yacasl2.html | 77 ++++++++++++++++++++++++++++++++++++++++++++ doc/yacasl2.texi | 63 ++++++++++++++++++++++++++++++++++++ 3 files changed, 141 insertions(+) create mode 100644 doc/graph/.gitignore diff --git a/doc/graph/.gitignore b/doc/graph/.gitignore new file mode 100644 index 0000000..e33609d --- /dev/null +++ b/doc/graph/.gitignore @@ -0,0 +1 @@ +*.png diff --git a/doc/yacasl2.html b/doc/yacasl2.html index 40437bf..19fe728 100644 --- a/doc/yacasl2.html +++ b/doc/yacasl2.html @@ -191,8 +191,23 @@ pre.example em {
  • 使用例
  • 5.5 L2STR - l2str.casl +
  • 5.6 MAX - max.casl +
  • 5.7 MINIM - minim.casl +
  • 5.8 MULA - mula.casl
  • 5.9 MULL - mull.casl
  • 5.10 OUTA - outa.casl @@ -1122,14 +1137,76 @@ YACASL2のコマンドとオプションについて解説します。

    5.5 L2STR - l2str.casl

    +

    符号なし整数を文字列に変換する + +

    入力

    + +
    +
    GR1
    符号なし整数 + +
    GR2
    変換した文字列を格納するアドレス +
    + +

    出力

    + +
    +
    GR0
    文字列の長さ +
    + +

    依存する副プログラム

    + + +

    5.6 MAX - max.casl

    +

    連続した複数のWORDを符号付き整数とみなして最大値を返す + +

    入力

    + +
    +
    GR1
    WORD値を格納したアドレス + +
    GR2
    値の個数 +
    + +

    出力

    + +
    +
    GR0
    最大値 +
    + +

    依存する副プログラム

    + +

    なし +

    5.7 MINIM - minim.casl

    +

    連続した複数のWORDを符号付き整数とみなして最小値を返す + +

    入力

    + +
    +
    GR1
    WORD値を格納したアドレス + +
    GR2
    値の個数 +
    + +

    出力

    + +
    +
    GR0
    最小値 +
    + +

    依存する副プログラム

    + +

    なし +

    5.8 MULA - mula.casl

    diff --git a/doc/yacasl2.texi b/doc/yacasl2.texi index 3c5ada1..49ad8d9 100644 --- a/doc/yacasl2.texi +++ b/doc/yacasl2.texi @@ -1126,12 +1126,75 @@ $ @kbd{casl2 call_divl.casl $CASL2LIBDIR/divl.casl $CASL2LIBDIR/outl.casl \ @node L2STR, MAX, INL, CASL2LIB Manual @section @kbd{L2STR} - @file{l2str.casl} +符号なし整数を文字列に変換する + +@unnumberedsubsec 入力 +@table @code +@item GR1 +符号なし整数 + +@item GR2 +変換した文字列を格納するアドレス +@end table + +@unnumberedsubsec 出力 +@table @code +@item GR0 +文字列の長さ +@end table + +@unnumberedsubsec 依存する副プログラム +@itemize +@item +@code{DIVL} +@end itemize + @node MAX, MINIM, L2STR, CASL2LIB Manual @section @kbd{MAX} - @file{max.casl} +連続した複数のWORDを符号付き整数とみなして最大値を返す + +@unnumberedsubsec 入力 +@table @code +@item GR1 +WORD値を格納したアドレス + +@item GR2 +値の個数 +@end table + +@unnumberedsubsec 出力 +@table @code +@item GR0 +最大値 +@end table + +@unnumberedsubsec 依存する副プログラム +なし + @node MINIM, MULA, MAX, CASL2LIB Manual @section @kbd{MINIM} - @file{minim.casl} +連続した複数のWORDを符号付き整数とみなして最小値を返す + +@unnumberedsubsec 入力 +@table @code +@item GR1 +WORD値を格納したアドレス + +@item GR2 +値の個数 +@end table + +@unnumberedsubsec 出力 +@table @code +@item GR0 +最小値 +@end table + +@unnumberedsubsec 依存する副プログラム +なし + @node MULA, MULL, MINIM, CASL2LIB Manual @section @kbd{MULA} - @file{mula.casl} -- 2.18.0