<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- Copyright (C) 2010-2023 j8takagi --> <!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Simple output (YACASL2 - CASL II 処理システム)</title> <meta name="description" content="Simple output (YACASL2 - CASL II 処理システム)"> <meta name="keywords" content="Simple output (YACASL2 - CASL II 処理システム)"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="makeinfo"> <link href="index.html" rel="start" title="Top"> <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> <link href="Sample-usage.html" rel="up" title="Sample usage"> <link href="Assemble-result.html" rel="next" title="Assemble result"> <link href="Sample-usage.html" rel="prev" title="Sample usage"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.indentedblock {margin-right: 0em} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.lisp {margin-left: 3.2em} kbd {font-style: oblique} pre.display {font-family: inherit} pre.format {font-family: inherit} pre.menu-comment {font-family: serif} pre.menu-preformatted {font-family: serif} span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} --> </style> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body lang="ja_JP"> <span id="Simple-output"></span><div class="header"> <p> Next: <a href="Assemble-result.html" accesskey="n" rel="next">Assemble result</a>, Previous: <a href="Sample-usage.html" accesskey="p" rel="prev">Sample usage</a>, Up: <a href="Sample-usage.html" accesskey="u" rel="up">Sample usage</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p> </div> <hr> <span id="Shi-Xing-Jie-Guo-noChu-Li-dakewoBiao-Shi"></span><h3 class="section">2.1 実行結果の出力だけを表示</h3> <p>インストール時にコマンド実行の確認に使った<samp>hello.casl</samp>は、次のような内容です。 CASL IIのマクロ命令OUTは、文字列を出力します。 </p> <div class="example"> <pre class="example">$ <kbd>cat hello.casl</kbd> MAIN START OUT OBUF,LEN RET OBUF DC 'Hello, World!' LEN DC 13 END </pre></div> <p>次のコマンドを実行すると、CASL II のアセンブルと仮想マシン COMET II 上での実行が連続で行われ、文字列が出力されます。 </p> <div class="example"> <pre class="example">$ <kbd>casl2 hello.casl</kbd> Hello, World! </pre></div> <p><samp>addl.casl</samp>は、3と1の和を求めます。 </p> <div class="example"> <pre class="example">$ <kbd>cat addl.casl</kbd> ;;; ADDL r,adr MAIN START LD GR1,A ADDL GR1,B RET A DC 3 B DC 1 END </pre></div> <p>このプログラムには出力命令がないため、オプションなしで実行した場合には結果が出力されません。 </p> <div class="example"> <pre class="example">$ <kbd>casl2 addl.casl</kbd> $ </pre></div> <p>実行内容を確認するには、後述のようにCPU 内にあるレジスタやメモリの内容を表示するか、結果を出力するための処理を追加する必要があります。 </p> </body> </html>