Annotation of nono/doc/index.html, revision 1.1.1.17

1.1.1.2   root        1: <!--
                      2:  nono
                      3:  Copyright (C) 2020 nono project
                      4:  Licensed under nono-license.txt
                      5: -->
1.1       root        6: <html><head>
                      7: <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                      8: <title>nono document</title>
                      9: <style type="text/css">
                     10: /* https://jfly.uni-koeln.de/colorset/ */
                     11: 
                     12: :root {
                     13:        --blue:                 rgb(  0,  90, 255);
                     14:        --brown:                rgb(128,  64,   0);
                     15:        --green:                rgb(  3, 175, 122);
                     16:        --grey:                 rgb(132, 145, 158);
1.1.1.13  root       17:        --cream:                rgb(255, 255, 128);
                     18:        --yellow-green: rgb(216, 242,  85);
1.1.1.9   root       19:        --light-pink:   rgb(255, 202, 191);
1.1.1.13  root       20:        --light-green:  rgb(119, 217, 168);
1.1       root       21:        --light-grey:   rgb(200, 200, 203);
1.1.1.4   root       22: 
                     23:        --bg-grey:              rgb(220, 220, 223);
1.1       root       24: }
                     25: body {
1.1.1.4   root       26:        background-color: var(--bg-grey);
1.1       root       27: }
                     28: q {
                     29:        color: var(--brown);
                     30: }
                     31: q:before {
                     32:        content: "[";
                     33: }
                     34: q:after {
                     35:        content: "]";
                     36: }
                     37: dt.dt-indent {
                     38:        padding-left: 1ex;
                     39: }
1.1.1.15  root       40: .h4 {
                     41:        font-weight: bold;
                     42:        font-size: 110%;
                     43: }
                     44: .h5 {
                     45:        font-weight: bold;
                     46:        padding-left: 1ex;
                     47: }
1.1       root       48: .main {
1.1.1.15  root       49:        margin-left: 2em;
                     50: }
                     51: .main1 {
1.1       root       52:        margin-left: 1em;
                     53: }
                     54: .cons {
                     55:        background-color: black;
                     56:        color: white;
                     57: }
                     58: .file {
                     59:        background-color: white;
                     60:        color: black;
                     61: }
                     62: .strike {
                     63:        color: var(--grey);
                     64: }
1.1.1.5   root       65: .strike > q {
                     66:        color: var(--grey);
                     67: }
1.1.1.13  root       68: .new {
                     69:        background-color: var(--light-green);
                     70: }
                     71: .new > q {
                     72:        background-color: var(--light-green);
                     73: }
1.1       root       74: </style>
                     75: </head>
                     76: <body>
1.1.1.17! root       77: <h3>nono 0.7.0 (2024/02/21)</h3>
1.1       root       78: 
1.1.1.17! root       79: nono は NetBSD とかで動作する OMRON LUNA-I/LUNA-88K のエミュレータです。
        !            80: 何故か SHARP X68030 と virt68k も動いたりするかも知れません。
        !            81: <q>nono is OMRON LUNA-I/LUNA-88K emulator runs on NetBSD and etc.
        !            82: It can also emulate SHARP X68030 and virt68k.
        !            83: </q>
1.1.1.9   root       84: 
                     85: <hr>
                     86: 
                     87: <h4>Index of this page:</h4>
1.1.1.8   root       88: <div class="main">
1.1.1.11  root       89: <a href="#build">1. ビルド方法 <q>How to build</q></a><br>
1.1.1.14  root       90: <a href="#execute">2. 実行方法 <q>How to execute</q></a><br>
1.1.1.11  root       91: <a href="#configuration">3. 設定 <q>Configuration</q></a><br>
                     92: <a href="#aboutvm">4. VM について <q>About VM</q></a><br>
                     93: <a href="#tryit">5. 実行してみる <q>Try it</q></a><br>
1.1.1.14  root       94: <a href="#network">6. ホストネットワーク設定例 <q>Example of host network setup</q></a><br>
1.1.1.13  root       95: <a href="#knownissues">7. 既知の問題 <q>Known Issues</q></a><br>
                     96: <a href="#migrate">8. 過去のバージョンからの移行方法
1.1.1.10  root       97: <q>How to migrate from old versions</q></a><br>
1.1.1.13  root       98: <a href="#changes">9. 変更履歴 <q>Changes</q></a><br>
                     99: <a href="#license">10. 連絡先、ライセンス等 <q>Contact, License, etc</q></a><br>
                    100: </div>
                    101: <p>
                    102: <div class="main">
                    103: <span class="new">緑背景</span>は新規または目立った更新のあった箇所です。
                    104: <q><span class="new">Green Background</span> is new or updated paragraph.</q>
1.1.1.8   root      105: </div>
1.1.1.4   root      106: 
1.1.1.13  root      107: 
1.1.1.8   root      108: <a name="build"></a>
1.1.1.15  root      109: <details open style="padding-top: 1em">
                    110: <summary><span class=h4>1. ビルド方法 <q>How to build</q></span></summary><div class="main">
1.1.1.5   root      111: ビルドには以下が必要です。
1.1.1.14  root      112: <q>The followings are required for build.</q>
1.1.1.5   root      113: 
1.1       root      114: <ul>
1.1.1.2   root      115: <li>make (BSD make, not GNU make)
1.1.1.4   root      116: <li>C/C++ compiler which supports -std=c++14.
                    117: <br>
1.1.1.13  root      118: (For gcc, 7.4 or newer works at least.
1.1.1.17! root      119: For clang, 7.0 - 15.0 works at least.)
        !           120: <li>wxWidgets 3.2.x "stable" branch or 3.0.x "old stable" branch
1.1.1.2   root      121: <li>gettext
1.1       root      122: </ul>
1.1.1.2   root      123: 
1.1.1.5   root      124: <p>
1.1.1.15  root      125: wxWidgets は NetBSD(pkgsrc) なら
1.1.1.17! root      126: pkgsrc/x11/wxGTK32 (OPTIONS:gtk3 で動作確認) です。
1.1.1.14  root      127: <q>If you use NetBSD(pkgsrc),
1.1.1.17! root      128: wxWidgets is pkgsrc/x11/wxGTK32 (OPTIONS:gtk3 is tested).</q>
1.1.1.14  root      129: 
                    130: <p>
1.1.1.5   root      131: (NetBSD 以外でのビルドはサポートしていませんが)
1.1.1.17! root      132: Ubuntu 22.04 ではたぶん以下のパッケージが必要です。
        !           133: <q>You may need the following packages on Ubuntu 22.04
1.1.1.5   root      134: (though we won't support non-NetBSD platform).</q>
                    135: </p>
1.1.1.8   root      136: <ul>
                    137: <li>
1.1.1.5   root      138: bmake
                    139: build-essential
                    140: gettext
                    141: libbsd-dev
                    142: libkqueue-dev
1.1.1.17! root      143: libwxgtk3.0-gtk3-dev
1.1.1.5   root      144: zlib1g-dev
1.1.1.8   root      145: </ul>
1.1.1.5   root      146: 
1.1.1.2   root      147: <p>
1.1.1.9   root      148: nono のソースアーカイブを展開したら以下のようにビルドします。
1.1.1.17! root      149: <q>Extract the nono's source archive and build as following.</q>
        !           150: </p>
1.1.1.13  root      151: 
1.1       root      152: <blockquote class="cons"><pre>
1.1.1.17! root      153: % ./configure [&lt;options&gt;]
        !           154: % make -DRELEASE depend
        !           155: % make -DRELEASE
1.1.1.2   root      156: % su
                    157: # make install
1.1       root      158: </pre></blockquote>
1.1.1.2   root      159: 
                    160: <p>
1.1.1.17! root      161: configure には環境変数 CC、CXX でコンパイラを指定することが出来ます。
        !           162: wx-config が標準的な名前で提供されていないために見付けられない場合には
        !           163: 環境変数 WX_CONFIG にパスを指定することが出来ます。
        !           164: また configure のオプションとして以下が指定できます。
        !           165: <q>You can specify C/C++ compiler using environment variable CC and CXX
        !           166: if configure cannot find standard name suitable compiler.
        !           167: You can specify wx-config path using environment variable WX_CONFIG
        !           168: if configure cannot find wx-config.
        !           169: Also, you can specify the following option for <tt>configure</tt>.
        !           170: </q>
        !           171: <p>
        !           172: <ul>
        !           173: <li><span class="new"><tt>--disable-avx2</tt> …
        !           174: amd64(x86_64) で AVX2 対応コードを無効にします。
        !           175: デフォルトでは、コンパイラが AVX2 に対応していることを
        !           176: configure が検出できれば AVX2 対応コードを生成します。
        !           177: <q>Disable AVX2 support on amd64(x86_64).
        !           178: By the default, it will generate AVX2 supported binary
        !           179: only if configure detects that compiler supports AVX2.</q></span>
        !           180: </ul>
        !           181: <p>
        !           182: <tt>make install</tt> により2つの実行ファイルがインストールされます。
1.1.1.2   root      183: <tt>nono</tt> が GUI 版実行ファイル、
                    184: <tt>nono-cli</tt> がコマンドライン版です。
1.1.1.17! root      185: <q><tt>make install</tt> will install two executables.
1.1.1.8   root      186: <tt>nono</tt> is the GUI executable and <tt>nono-cli</tt> is
                    187: the command line executable.</q>
1.1.1.17! root      188: </p>
1.1       root      189: </div>
1.1.1.15  root      190: </details>
1.1       root      191: 
                    192: 
1.1.1.14  root      193: <a name="execute"></a>
1.1.1.15  root      194: <details open style="padding-top: 1em">
                    195: <summary><span class=h4>2. 実行方法 <q>How to execute</q></span></summary><div class="main">
                    196: nono は複数機種に対応しているため設定なしでは起動できません。
                    197: 設定は設定ファイルかコマンドラインオプションで指定します。
                    198: 詳細は以下の<a name="#configuration">設定</a>の章を参照してください。
                    199: <q>nono supports multiple architectures so that
                    200: it needs configuration.
                    201: See the following <a name="#configuration">Configuration</a> section for
                    202: details.</q>
1.1.1.14  root      203: </div>
                    204: 
1.1.1.8   root      205: <a name="commandline"></a>
1.1.1.15  root      206: <details open style="padding-top: 1em">
                    207: <summary><span class=h5>2.1. コマンドラインオプション <q>Command Line Option</q></span></summary><div class="main">
1.1       root      208: <dl>
1.1.1.7   root      209: <dt class=dt-indent><tt>-c <i>vmpath</i></tt></dt>
                    210: <dd>VM ディレクトリ/設定ファイルを指定します。
                    211: <i>vmpath</i> がディレクトリならそのディレクトリの中の nono.cfg
                    212: を設定ファイルとします。
                    213: <i>vmpath</i> がファイルならそれを設定ファイルとします。
                    214: そしていずれの場合も
                    215: 設定ファイルがあるディレクトリを VM ディレクトリとします。
                    216: -c オプションを省略すると <i>vmpath</i> をカレントディレクトリとします。
                    217: <q>Specifies the VM directory/configuration file.
                    218: If <i>vmpath</i> is a directory,
                    219: make nono.cfg in that directory a configuration file.
                    220: Or if <i>vmpath</i> is a file,
                    221: make the specified file a configuration file.
                    222: And in both cases,
                    223: make the directory where that file is located a VM directory.
                    224: If <tt>-c</tt> option is omitted,
1.1.1.12  root      225: <i>vmpath</i> is considered as the current directory.</q></p></dd>
1.1.1.16  root      226: <dt class=dt-indent><tt>--create-sram</tt></dt>
                    227: <dd>(X68030 Only)
1.1.1.15  root      228: VM ディレクトリに X68030 用の SRAM.DAT がなければ初期状態で作成して終了します。
                    229: <q>
                    230: nono will create the initial SRAM.DAT for X68030 and exit,
1.1.1.16  root      231: if there is no SRAM.DAT in the VM directory.</q></p></dd>
1.1       root      232: <dt class=dt-indent><tt>-f</tt></dt>
                    233: <dd>高速モードで起動します。
1.1.1.2   root      234: GUI なら起動後にもメニューから変更できますが、その初期値を変えるだけです。
1.1.1.16  root      235: 設定の <tt>fast-mode=1</tt> と等価です。
1.1.1.2   root      236: <q>Boot as the fast mode.
                    237: You can change this mode on GUI menu after boot,
1.1.1.15  root      238: and the option only changes its initial state.
1.1.1.16  root      239: This option is equivalent to <tt>fast-mode=1</tt> in configuration.</q></p></dd>
1.1       root      240: <dt class=dt-indent><tt>--fontsize <i>height</i></tt></dt>
                    241: <dd>GUI 版のみ。
                    242: 全サブウインドウの起動時のフォントサイズを指定します。
1.1.1.3   root      243: 起動後にメニューから変更できます。
1.1.1.16  root      244: 設定の <tt>monitor-fontsize</tt> と等価です。
1.1.1.15  root      245: <q>GUI Only.
                    246: Specifies the initial fontsize of all sub windows.
                    247: You can change this value on GUI menu after boot.
1.1.1.16  root      248: This option is equivalent to <tt>monitor-fontsize</tt> in configuration.</q></p></dd>
1.1.1.17! root      249: <dt class=dt-indent><tt><span class='new'>--initrd <i>file</i></span></tt></dt>
        !           250: <dd><span class="new">
        !           251: (virt68k only)
        !           252: カーネルに渡す初期 RAM ディスクのパスを指定します。
        !           253: <i>file</i> が相対パスの場合カレントディレクトリからのパスになります。
        !           254: 設定の <tt>exec-initrd</tt> とは相対パスの起点の違いを除いて同一です。
        !           255: <q>
        !           256: Specifies the initial ramdisk image passed to the kernel.
        !           257: If <tt><i>file</i></tt> is relative path,
        !           258: it is path from the current directory.
        !           259: This option is equivalent to <tt>exec-initrd</tt> in configuration
        !           260: except for base directory of the relative path.</q>
        !           261: </span></p></dd>
1.1       root      262: <dt class=dt-indent><tt>-s <i>scale</i></tt></dt>
                    263: <dd>GUI 版のみ。
                    264: メインウィンドウの起動時のスケールを実数で指定します。
1.1.1.15  root      265: 設定の <tt>mainview-scale</tt> と等価です。
                    266: 起動後はメニューからプリセットされた倍率と
1.1.1.16  root      267: <tt>mainview-scale</tt> で指定された倍率には変更可能です。
1.1.1.15  root      268: <q>GUI Only.
1.1.1.2   root      269: Specifies the initial main window scale in real number.
1.1.1.16  root      270: This is equivalent to <tt>mainview-scale</tt> in configuration.
1.1.1.15  root      271: You can change this scale on GUI menu after boot.</q></p></dd>
1.1       root      272: <dt class=dt-indent><tt>--show-config</tt></dt>
1.1.1.2   root      273: <dd>設定ファイルと <tt>-V</tt> オプションを読み込んだ結果を表示します。
                    274: <q>Shows the result of reading configuration file and
                    275: parsing <tt>-V</tt> options.</q></p></dd>
1.1       root      276: <dt class=dt-indent><tt>-v</tt></dt>
1.1.1.2   root      277: <dd>バージョンを表示します。
                    278: <q>Shows the version.</q></p></dd>
1.1       root      279: <dt class=dt-indent><tt>-V <i>name</i>=<i>value</i></tt></dt>
1.1.1.3   root      280: <dd>設定ファイルで指定した <tt><i>name</i>=<i>configvalue</i></tt> の代わりに
1.1.1.2   root      281: このオプションの <tt><i>name</i>=<i>value</i></tt> を適用します。
1.1.1.13  root      282: <tt><i>name</i></tt> が正しくない場合はエラー終了します。
1.1.1.3   root      283: <q>Use this <i>name</i>=<i>value</i>
1.1.1.13  root      284: instead of <i>name</i>=<i>configvalue</i> specified in configuration file.
                    285: If <tt><i>name</i></tt> is not correct, it will exit on error.</q></p></dd>
1.1.1.10  root      286: <dt class=dt-indent><tt>-X <i>file</i></tt></dt>
                    287: <dd>ホストの <tt><i>file</i></tt> をロードして実行します。
                    288: <tt><i>file</i></tt> が相対パスの場合カレントディレクトリからのパスになります。
1.1.1.17! root      289: <span class="new">設定の <tt>exec-file</tt> とは相対パスの起点の違いを除いて同一です。</span>
1.1.1.10  root      290: ファイルが gzip 圧縮されていれば自動的に展開します。
1.1.1.15  root      291: (展開後の) ファイル形式は以下の通りですが、
1.1.1.10  root      292: 実際にはブートローダとカーネル程度しか想定していません。
1.1.1.15  root      293: また、いずれも起動元デバイスが取得できないなどの問題はあるかも知れません。
1.1.1.10  root      294: <q>Loads and executes host's <tt><i>file</i></tt>.
                    295: If <tt><i>file</i></tt> is relative path,
                    296: it is path from the current directory.
1.1.1.17! root      297: <span class="new">This option is equivalent to <tt>exec-file</tt> in configuration
        !           298: except for base directory of the relative path.</span>
1.1.1.10  root      299: If the file is gzip'd, it is automatically extracted.
1.1.1.15  root      300: The supported file format (after extracting) is the following.
1.1.1.10  root      301: Actually, it only assumes bootloaders or kernels.
1.1.1.15  root      302: And note that it may not obtain some information that where did I boot from,
                    303: for example.</q>
                    304: <ul>
                    305: <li>a.out (OMAGIC) 実行ファイル (おそらくブートローダのみサポート)
                    306: <q>a.out (OMAGIC) executable (It probably supports bootloaders only)</q>
                    307: <li>ELF 実行ファイル
                    308: (おそらくカーネルのみサポート。
                    309: NetBSD の実行ファイルのようであれば、
                    310: カーネルだと思ってシンボルテーブルも読み込みます)
                    311: <q>ELF executable
                    312: (It probably supports the kernel only.
                    313: If the file is assumed to be NetBSD executable,
                    314: it will also load symbol tables as the bootloader does to the kernel.)</q>
                    315: <li>ELF object (Experimental)
                    316: <li>Human68k .x executable (Experimental)
                    317: </ul>
1.1.1.17! root      318: LUNA では設定の <tt>prom-image</tt> (後述) によらず内蔵の互換 ROM で起動します。
        !           319: <tt>luna-dipsw1</tt> の DIPSW 設定が
        !           320: <tt>dipsw-autoboot=yes</tt> 相当の状態ならそのまま直ちにホストファイルを実行し、
        !           321: そうでなければ互換 ROM のプロンプトで停止します。
        !           322: 後者の場合でも LUNA-I なら "g" コマンド、LUNA-88K なら "b" コマンドによる
        !           323: ロードはここで指定したホストファイルをロードします。
1.1.1.15  root      324: X68030 では、IPLROM 起動の後の起動デバイスに細工がしてあり、
                    325: そこからホストファイルを実行します。
1.1.1.17! root      326: <span class="new">virt68k (と NEWS) はこの方法でしか起動できませんので、
        !           327: 実行ファイルの指定は必須になります。</span>
1.1.1.15  root      328: <q>
                    329: On LUNA,
1.1.1.17! root      330: regardless of <tt>prom-image</tt> configuration (see below),
        !           331: it boots the internal emulated PROM.
        !           332: If <tt>luna-dipsw1</tt> configuration meets <tt>dipsw-autoboot=yes</tt>,
        !           333: it will immediately load and execute the host file.
        !           334: Otherwise, it will wait in prompt.
        !           335: Even in this case, "g" command (in LUNA-I) or "b" command (in LUNA-88K)
        !           336: will load the host file that is specified by this option.
1.1.1.15  root      337: On X68030,
                    338: nono hacks the boot device after normal boot from IPLROM,
1.1.1.17! root      339: and loads and executes the host file.
        !           340: <span class="new">On virt68k (and NEWS), this is the only way to boot.</span></q></p></dd>
1.1       root      341: </dl>
                    342: 
1.1.1.2   root      343: 以下開発用。<q>For developers:</q>
1.1       root      344: <dl>
1.1.1.3   root      345: <dt class=dt-indent><tt>-b <i>hexaddr</i>[,<i>skipcount</i>]</tt></dt>
1.1       root      346: <dd>デバッガのブレークポイントを 16進数で指定します。</dd>
                    347: <dt class=dt-indent><tt>-C</tt></dt>
                    348: <dd>ログをコンソールにも出力します。
                    349: 通常はログウィンドウにだけ出力されます。</dd>
                    350: <dt class=dt-indent><tt>-d</tt></dt>
                    351: <dd>起動時にデバッガプロンプトで停止します。</dd>
                    352: <dt class=dt-indent><tt>-D</tt></dt>
                    353: <dd>コンソールをデバッガとして使用します。
1.1.1.13  root      354: 過去との互換性のために存在していますが、
1.1.1.14  root      355: <tt>-V debugger-driver=stdio</tt> と等価です。</dd>
1.1       root      356: <dt class=dt-indent><tt>-L <i>name1</i>=<i>level1</i>[,<i>name2</i>=<i>level2</i>,...]</tt></dt>
                    357: <dd>ログレベルを指定します。
                    358: カンマで区切って複数指定することも出来ます。
                    359: <tt>-Lhelp</tt> で name の一覧を表示します。</dd>
                    360: <dt class=dt-indent><tt>-M <i>name</i>[,<i>name2</i>,...]</tt></dt>
                    361: <dd>起動時に表示するモニタウィンドウを指定します。
1.1.1.3   root      362: カンマで区切って複数指定することも出来ます。
                    363: <tt>-Mhelp</tt> で name の一覧を表示します。</dd>
1.1       root      364: </dl>
                    365: </div>
1.1.1.15  root      366: </details>
                    367: </details>
1.1       root      368: 
1.1.1.8   root      369: 
                    370: <a name="configuration"></a>
1.1.1.15  root      371: <details open style="padding-top: 1em">
                    372: <summary><span class=h4>3. 設定 <q>Configuration</q></span></summary><div class="main">
                    373: nono の設定はいずれも以下の順序で適用されます。
                    374: <q>nono's configurations are always applied in the following order.</q>
1.1.1.16  root      375: <ol>
1.1.1.15  root      376: <li>デフォルト値 <q>Default value</q>
                    377: <li>~/.nono.cfg があればその内容
                    378: <q>Contents of ~/.nono.cfg if exists</q>
                    379: <li>VM ディレクトリ内の nono.cfg (または -c で指定したファイル)
                    380: があればその内容
                    381: <q>Contents of nono.cfg in the VM directory (or the file specified by -c option) if exists</q>
                    382: <li>コマンドラインオプション <q>Command line option</q>
                    383: </ol>
                    384: ファイルの書式はどちらも <tt>key = value</tt> 形式で1行1項目ずつです。
1.1       root      385: <tt>key</tt> と <tt>value</tt> の前後の空白は取り除かれます。
                    386: また空行と "<tt>#</tt>" で始まる行は無視します。
1.1.1.13  root      387: 知らないキーは警告を出した上で無視します。
1.1.1.15  root      388: 同じキーが複数回現れた場合、
                    389: 上に列挙した順に後から書いたほうで上書きし、
                    390: 同じファイル内でも同様に後に書いたほうで上書きします。
                    391: コマンドラインオプション <tt>-V</tt> 等はこれをさらに上書きします。
                    392: コマンドラインオプションで同じキーが複数回現れた場合も後に書いたほうが上書きします。
                    393: <q>
                    394: The syntax of both files is <tt>key = value</tt> format, one per line.
1.1.1.2   root      395: White spaces before and after <tt>key</tt> and <tt>value</tt> are ignored.
1.1.1.13  root      396: Blank lines, lines beginning with "<tt>#</tt>" are also ignored.
1.1.1.15  root      397: The lines with unrecognized key are ignored with a warning.
                    398: 
                    399: If the same key appears more than once,
                    400: the latter overwrites the former in the above order.
                    401: If the same key appears in a file,
                    402: the latter overwrites the former in the same manner.
1.1.1.17! root      403: Then, command line option <tt>-V</tt> etc. overwrites them.
1.1.1.15  root      404: If the same key appears more than once in the command line option,
                    405: do in the same manner.</q>
                    406: <p>
                    407: <tt>vmtype</tt> を除くすべての設定項目はそれぞれデフォルト値を持っています。
                    408: つまり少なくとも <tt>vmtype</tt> だけは設定ファイルかコマンドラインオプションで指定する必要があります。
                    409: <q>All configuration items except <tt>vmtype</tt> have default value.
                    410: It means, you must specify at least only <tt>vmtype</tt>
                    411: by configuration file or commandline option.</q>
1.1       root      412: <p>
                    413: 設定項目は次の通りです。
1.1.1.2   root      414: <q>The configuration items are:</q>
1.1       root      415: <dl>
                    416: <dt class=dt-indent><tt>vmtype = <i>string</i></tt></dt>
1.1.1.4   root      417: <dd>VM 種別を以下のいずれかから指定します。
                    418: 省略不可です。
                    419: <q>Specifies the VM type from the following.
1.1.1.12  root      420: This field is mandatory.</q>
1.1.1.4   root      421: <table cellspacing=0 cellpadding=0>
                    422: <tr><td>&nbsp;<td><tt>luna</tt>        <td>… LUNA-I
1.1.1.13  root      423: <tr><td><td><tt>luna88k</tt>   <td>… LUNA-88K
1.1.1.17! root      424: <tr><td><td><tt>x68030</tt>            <td>… X68030
1.1.1.15  root      425: <tr><td><td><tt>news</tt>              <td>… NWS-1750 (Just a joke)
1.1.1.17! root      426: <tr class="new"><td><td><tt>virt68k</tt>       <td>… virt68k
1.1.1.4   root      427: </table></p></dd>
1.1.1.15  root      428: <dt class=dt-indent><tt>cgrom-image = <i>path</i></tt></dt>
                    429: <dd>(X68030 Only)
1.1.1.14  root      430: X68030 の外部 CGROM イメージファイルのパスを指定します。
                    431: CGROM は 768KB です。
                    432: <i>path</i> がファイル名のみなら VM ディレクトリとその親ディレクトリからこのファイル名を検索します。
                    433: <i>path</i> が相対パスなら VM ディレクトリからの相対パスになります (現在のディレクトリからではありません)。
                    434: 空にすると nono 内蔵の互換 CGROM を使用します。
                    435: デフォルトは空です。
                    436: <q>Specifies the X68030's external CGROM image file path.
                    437: This CGROM is 768KB.
                    438: If the <i>path</i> does not have any path delimiters,
                    439: the VM directory and then its parent directory will be searched.
                    440: If the <i>path</i> is a relative path,
                    441: it will be path from the VM directory, not from the current directory.
                    442: If the <i>path</i> is empty, nono's builtin compatible CGROM will be used.
1.1.1.15  root      443: The default value is empty.</q></p></dd>
1.1.1.9   root      444: <dt class=dt-indent><tt>clock-sync = <i>value</i></tt></dt>
                    445: <dd>仮想マシン内の時刻の同期方法を指定します。
                    446: <tt>real</tt> なら実時間に同期、<tt>virtual</tt> なら仮想時間に同期します。
                    447: デフォルトは <tt>real</tt> です。
                    448: この機能は実験中のため将来予告なく仕様が変更になる可能性があります。
1.1.1.15  root      449: <q>Specifies how to synchronize the time in virtual machine.
1.1.1.9   root      450: If <tt>real</tt>, synchronize with the real time;
                    451: if <tt>virtual</tt>, synchronize with the virtual time.
                    452: The default is <tt>real</tt>.
                    453: This feature is under experimentation and may be changed in the future
1.1.1.12  root      454: without notice.</q></p></dd>
1.1.1.14  root      455: <dt class=dt-indent><tt>debugger-driver = <i>string</i></tt></dt>
                    456: <dd>デバッガのコンソールドライバを指定します。
1.1.1.13  root      457: <tt>stdio</tt>、<tt>tcp</tt>、<tt>none</tt> が選択可能です。
                    458: <tt>stdio</tt> は標準入出力を使用します。
                    459: <tt>tcp</tt> は TCP ポートで TELNET プロトコルで待ち受けます。
                    460: <tt>none</tt> ならホスト側とは一切通信を行いません。
                    461: デフォルトは <tt>none</tt> です。
                    462: <q>Specifies console driver of the debugger.
                    463: <tt>stdio</tt>, <tt>tcp</tt>, and <tt>none</tt> can be specified.
                    464: <tt>stdio</tt> uses the standard input/output.
                    465: <tt>tcp</tt> listens on TCP port using TELNET protocol.
                    466: <tt>none</tt> doesn't make any communication with the host.
1.1.1.14  root      467: The default is <tt>none</tt>.</q></p></dd>
                    468: <dt class=dt-indent><tt>debugger-tcp-port = <i>integer</i></tt></dt>
                    469: <dd>デバッガのコンソールドライバが tcp の時の TCP 待ち受けポート番号を指定します。
1.1.1.15  root      470: <q>Specifies the TCP port number that debugger console driver listens.</q></p></dd>
                    471: <a name="config-dipsw-autoboot"></a><dt class=dt-indent><tt>dipsw-autoboot = <i>yesno</i></tt></dt>
                    472: <dd>(LUNA and NEWS Only)
                    473: 機種に依存せず DIPSW を自動起動に設定するかどうか指定します。
                    474: "<tt>yes</tt>" なら自動起動するように、
                    475: "<tt>no</tt>" なら自動起動しないように DIPSW 設定を上書きします。
                    476: "" (空) なら何もしません。デフォルトは "" です。
                    477: このオプションは <tt>luna-dipsw1</tt> や <tt>news-dipsw</tt>
                    478: の状態が設定ファイルやコマンドラインオプションによって確定した後に
                    479: 該当のスイッチだけを変更します。
                    480: <q>Specifies whether to configure DIPSW to boot automatically,
                    481: regardless of the models.
                    482: "<tt>yes</tt>" overwrites DIPSW, to boot automatically.
                    483: "<tt>no</tt>" overwrites DIPSW, not to boot automatically.
                    484: "" (Empty) does nothing.
                    485: The default value is "".
                    486: This option only changes the appropriate switch(es)
                    487: after the <tt>luna-dipsw1</tt> or <tt>news-dipsw</tt> configuration
                    488: is determined by the configuration file or command line options.</q></p></dd>
                    489: <dt class=dt-indent><tt>dipsw-serial = <i>yesno</i></tt></dt>
                    490: <dd>(LUNA and NEWS Only)
                    491: 機種に依存せず DIPSW をシリアルコンソールを使うかどうか指定します。
                    492: "<tt>yes</tt>" ならシリアルコンソールを使うように、
                    493: "<tt>no</tt>" ならシリアルコンソールを使わないように DIPSW 設定を上書きします。
                    494: "" (空) なら何もしません。デフォルトは "" です。
                    495: <tt>luna-dipsw1</tt> もしくは <tt>news-dipsw</tt> (機種による)
                    496: の状態が設定ファイルやコマンドラインオプションによって確定した後に
                    497: このオプションによって該当のスイッチだけを変更します。
                    498: NEWS でシリアルコンソールを使わないを選択した場合、
                    499: SW1,2,3 は OFF, OFF, ON にセットされ、
                    500: NWB-512 モノクロコンソール(未実装) が選択されます。
                    501: <q>Specifies whether to configure DIPSW to use serial console,
                    502: regardless of the models.
                    503: "<tt>yes</tt>" overwrites DIPSW, to use serial console.
                    504: "<tt>no</tt>" overwrites DIPSW, not to use serial console.
                    505: "" (Empty) does nothing.
                    506: The default value is "".
                    507: This option only changes the appropriate switch(es)
                    508: after the <tt>luna-dipsw1</tt> or <tt>news-dipsw</tt> configuration
                    509: is determined by the configuration file or command line options.
                    510: If you choose not to use serial console on NEWS,
                    511: SW1,2,3 will be set OFF, OFF, ON respectively,
                    512: and NWB-512 monochrome console (not implemented) will be chosen.</q></p></dd>
1.1.1.17! root      513: <dt class=dt-indent><tt>ethernet-macaddr = <i>string</i><br>ethernet<i>N</i>-macaddr = <i>string</i><br></tt></dt>
        !           514: <dd><i>N</i>
        !           515: 番目のイーサネットデバイスの仮想マシン側の MAC アドレスを指定します。
1.1.1.9   root      516: <tt><i>XX</i>:<i>XX</i>:<i>XX</i>:<i>XX</i>:<i>XX</i>:<i>XX</i></tt>
                    517: 形式で指定します。
                    518: <tt>auto</tt> なら自動的に決定します。
1.1.1.16  root      519: デフォルトは <tt>auto</tt> です。
1.1.1.17! root      520: <tt>ethernet-macaddr</tt> は <tt>ethernet0-macaddr</tt> の別名です。</p></dd>
        !           521: <dt class=dt-indent><tt><span class='new'>exec-file = <i>path</i></span></tt></dt>
        !           522: <dd><span class="new">
        !           523: 起動時にロードするホストの実行ファイルを指定します。
        !           524: -X オプションとほぼ同等ですが、相対パスは VM ディレクトリを起点にします。
        !           525: <q>Specifiies the host file that will be loaded at startup.
        !           526: This is mostly the same as -X option.
        !           527: The only one difference is that relative path originates the VM directory.</q>
        !           528: </span></p></dd>
        !           529: <dt class=dt-indent><tt><span class='new'>exec-initrd = <i>path</i></span></tt></dt>
        !           530: <dd><span class="new">
        !           531: (virt68k Only)
        !           532: カーネルに渡す初期 RAM ディスクイメージのパスを指定します。
        !           533: --initrd オプションとほぼ同等ですが、相対パスは VM ディレクトリを起点にします。
        !           534: <q>Specifies the initial ramdisk image passed to the kernel.
        !           535: This is mostly the same as --initrd option.
        !           536: The only one difference is that relative path originates the VM directory.</q>
        !           537: </span></p></dd>
1.1.1.16  root      538: <dt class=dt-indent><tt>extram-size = <i>integer</i></tt></dt>
                    539: <dd>(X68030 Only)
1.1.1.15  root      540: 拡張メモリのサイズを MB 単位で指定します。
                    541: 今の所以下だけが指定できます。
                    542: <q>Specifies the extended RAM size in MB.
                    543: For now, only the following can be specified.</q>
1.1.1.16  root      544: <ul>
1.1.1.15  root      545: <li><tt>0</tt> … 拡張メモリを使用しません。デフォルトです。
                    546: <q>No extended memory.  It's default.</q>
                    547: <li><tt>16</tt> … TS-6BE16 互換モードで、
1.1.1.17! root      548: アドレス $0100'0000 からの 16MB です。
1.1.1.15  root      549: <q>TS-6BE16 compatible mode.
1.1.1.17! root      550: Its address is from $0100'0000 and the size is 16MB.</q>
        !           551: <li><tt>128/256/512</tt> … 060turbo 互換モードで、
        !           552: アドレス $1000'0000 からです。
        !           553: <q>060turbo compatible mode.  Its address is from $1000'0000.</q>
1.1.1.16  root      554: </ul></p></dd>
                    555: <dt class=dt-indent><tt>fast-mode = <i>integer</i></tt></dt>
                    556: <dd>起動時の動作モードを指定します。0 なら通常モード、1 なら高速モードです。
1.1.1.15  root      557: デフォルトは 0 です。
1.1.1.16  root      558: コマンドラインオプション <tt>-f</tt> でも高速モードへのみ指定可能です。</p></dd>
1.1.1.15  root      559: <dt class=dt-indent><tt>fd-drive = <i>integer</i></tt></dt>
                    560: <dd>(X68030 Only)
1.1.1.14  root      561: フロッピードライブの数を 0 から 4 で指定します。
                    562: デフォルトは 2 です。
1.1.1.15  root      563: <q>Specifies the number of floppy drives from <tt>0</tt> to <tt>4</tt>.
1.1.1.14  root      564: The default is <tt>2</tt>.</q></p></dd>
1.1.1.15  root      565: <dt class=dt-indent><tt>fd<i>N</i>-image = <i>path</i></tt></dt>
                    566: <dd>(X68030 Only)
1.1.1.14  root      567: フロッピードライブ <i>N</i> に起動時に挿入するディスクイメージを指定します。
                    568: イメージパスが相対パスなら VM ディレクトリからの相対パスになります。
                    569: 起動後はメニューから操作できます。
                    570: デフォルトは空です。
1.1.1.15  root      571: <q>Specifies a diskimage to be inserted to floppy drive <i>N</i> at startup.
1.1.1.14  root      572: If the <i>path</i> is relative path, it is from the VM directory.
                    573: You can also operate them from menu after startup.
                    574: The default is empty.</q></p></dd>
1.1.1.15  root      575: <dt class=dt-indent><tt>fpu-type = <i>value</i></tt></dt>
                    576: <dd>(X68030 Only)
1.1.1.14  root      577: FPU を装着するかどうか指定しています。
                    578: <tt>none</tt> なら FPU を装着しません。
                    579: <tt>68881</tt> なら FPU として 68881 を装着します。
                    580: 現状 68882 はサポートしていません。
                    581: また <tt>none</tt> の代わりに <tt>0</tt>、
                    582: <tt>68881</tt> の代わりに <tt>1</tt> と書くこともできます。
                    583: デフォルトは <tt>68881</tt> です。
                    584: LUNA-I はたぶん 68881 搭載モデルのみのため設定できません。
1.1.1.17! root      585: <span class="new">virt68k も現状 68881 固定としています。</span>
1.1.1.15  root      586: <q>Specifies whether to install FPU or not.
1.1.1.14  root      587: If <tt>none</tt>, FPU is not installed.
                    588: If <tt>68881</tt>, 68881 FPU is installed.
                    589: 68882 is not supported yet.
                    590: And, <tt>none</tt> can also be written as <tt>0</tt>,
                    591: <tt>68881</tt> can also be written as <tt>1</tt>.
                    592: The default is <tt>68881</tt>.
                    593: This item cannot be specified on LUNA-I
1.1.1.17! root      594: because (probably) all LUNA-I has 68881.
        !           595: <span class="new">This item also cannot be specified on virt68k for now.</span></q></p></dd>
        !           596: <dt class=dt-indent><tt><span class='new'>host-avx2 = <i>string</i></span></tt></dt>
        !           597: <dd><span class="new">
        !           598: ホストが amd64(x86_64) の場合に AVX2 アクセラレーションを使うかどうかを
        !           599: 指定します。
        !           600: <tt>auto</tt> なら起動時にホスト CPU が AVX2 をサポートしているか確認し、
        !           601: サポートしていれば使用します。
        !           602: <tt>no</tt> なら AVX2 コードを実行しません。
        !           603: デフォルトは <tt>auto</tt> です。
        !           604: amd64(x86_64) 以外のホストではこの設定は無視されます。
        !           605: <q>Specifies whether to use AVX2 acceleration on amd64(x86_64) hosts.
        !           606: If <tt>auto</tt>, nono checks whether the host CPU supports AVX2
        !           607: on startup and use it if it does.
        !           608: If <tt>no</tt>, nono will not execute AVX2 instructions.
        !           609: The default is <tt>auto</tt>.
        !           610: Note that this item is ignored if the host is not amd64(x86_64).</q>
        !           611: </span></p></dd>
1.1.1.13  root      612: <dt class=dt-indent><tt>hostcom-driver = <i>string</i></tt></dt>
                    613: <dd>シリアルポートのホスト側ドライバを指定します。
                    614: <tt>stdio</tt>、<tt>tcp</tt>、<tt>none</tt> が選択可能です。
                    615: <tt>stdio</tt> は標準入出力を使用します。
                    616: <tt>tcp</tt> は TCP ポートで TELNET プロトコルで待ち受けます。
                    617: <tt>none</tt> ならホスト側とは一切通信を行いません。
                    618: デフォルトは <tt>none</tt> です。
                    619: <q>Specifies the host driver of serial port.
                    620: <tt>stdio</tt>, <tt>tcp</tt>, and <tt>none</tt> can be specified.
                    621: <tt>stdio</tt> uses the standard input/output.
                    622: <tt>tcp</tt> listens on TCP port using TELNET protocol.
                    623: <tt>none</tt> doesn't make any communication with the host.
                    624: The default is <tt>none</tt>.</q></p></dd>
                    625: <dt class=dt-indent><tt>hostcom-tcp-port = <i>integer</i></tt></dt>
                    626: <dd>ホストドライバが tcp の時の TCP 待ち受けポート番号を指定します。
1.1.1.15  root      627: <q>Specifies the TCP port number that host driver listens.</q></p></dd>
1.1.1.13  root      628: <dt class=dt-indent><tt>hostcom-fallback = <i>integer</i></tt></dt>
                    629: <dd><tt>hostcom-driver</tt> で指定したドライバが使用可能でなかった時、
                    630: 0 ならプロセスを終了します。1 なら <tt>none</tt> を選択して実行を継続します。
                    631: デフォルトは 0 です。
1.1.1.15  root      632: <q>Specifies the behavior when the driver which is selected by
1.1.1.13  root      633: <tt>hostcom-driver</tt> is unusable;
                    634: terminate the process if 0,
                    635: or continue to run using the <tt>none</tt> driver if 1.
                    636: The default is 0.</q></p></dd>
1.1.1.11  root      637: <dt class=dt-indent><tt>hostkbd-input = <i>string</i></tt></dt>
1.1.1.15  root      638: <dd>(LUNA and X68030 only)
                    639: ホストキーボードの入力モードを指定します。
1.1.1.11  root      640: <tt>char</tt> ならキャラクタ入力モード、
                    641: <tt>jp</tt> なら日本語キーボードモードです。
                    642: デフォルトは <tt>char</tt> です。
                    643: 詳細は <a href="#aboutvm">VM について</a> の章を参照してください。
                    644: <q>Specifies the input mode of the host keyboard.
                    645: <tt>char</tt> means the character mode,
                    646: <tt>jp</tt> means the Japanese keyboard mode.
                    647: The defualt is <tt>char</tt>.
                    648: See <a href="#aboutvm">About VM</a> for details.</q></p></dd>
1.1.1.17! root      649: <dt class=dt-indent><tt>hostnet-driver = <i>string</i><br>hostnet-afpacket-ifname = <i>ifname</i><br>hostnet-bpf-ifname = <i>ifname</i><br>hostnet-tap-devpath = <i>path</i><br>hostnet-fallback = <i>integer</i><br></tt></dt>
        !           650: <dd>それぞれ <tt>hostnet0-*</tt> の別名です。</p></dd>
        !           651: <dt class=dt-indent><tt>hostnet<i>N</i>-driver = <i>string</i></tt></dt>
        !           652: <dd><i>N</i>
        !           653: 番目のイーサネットデバイスのホスト側ドライバを指定します。
1.1.1.9   root      654: <tt>afpacket</tt>、<tt>bpf</tt>、<tt>tap</tt> のうち
                    655: ホスト OS がサポートしているものと <tt>auto</tt>、<tt>none</tt> が選択可能です。
                    656: <tt>afpacket</tt> は Linux の AF_PACKET ソケットを使用します。
                    657: <tt>bpf</tt> は bpf(4) デバイスを使用します。
                    658: <tt>tap</tt> は tap(4) インタフェースを使用します。
1.1       root      659: <tt>none</tt> ならホスト側とは一切通信を行いません。
1.1.1.9   root      660: <tt>auto</tt> ならホスト OS がサポートしているもののうち
                    661: <tt>tap</tt> → <tt>afpacket</tt> → <tt>bpf</tt> を順に試します。
1.1.1.17! root      662: <tt>hostnet0-driver</tt> のデフォルトは <tt>auto</tt>、
        !           663: <tt>hostnet1-driver</tt> のデフォルトは <tt>none</tt> です。
        !           664: <q>Specifies the host driver of <i>N</i>-th
1.1.1.16  root      665: ethernet device.
1.1.1.9   root      666: <tt>afpacket</tt>, <tt>bpf</tt>, and <tt>tap</tt> can be specified
                    667: only if the host OS supports them.
                    668: <tt>auto</tt> and <tt>none</tt> can always be specified.
                    669: <tt>afpacket</tt> uses Linux's AF_PACKET socket,
                    670: <tt>bpf</tt> uses bpf(4) device,
                    671: and <tt>tap</tt> uses tap(4) interface.
                    672: <tt>none</tt> doesn't make any communication with the host.
                    673: If <tt>auto</tt> is specified,
                    674: it tries <tt>tap</tt>, <tt>afpacket</tt>, and <tt>bpf</tt> in that order
                    675: (if the host OS supports them).
1.1.1.17! root      676: The default of <tt>hostnet0-driver</tt> is <tt>auto</tt>,
1.1.1.16  root      677: the default of <tt>hostnet1-driver</tt> is <tt>none</tt>.</q></p></dd>
1.1.1.17! root      678: <dt class=dt-indent><tt>hostnet<i>N</i>-afpacket-ifname = <i>ifname</i></tt></dt>
1.1.1.16  root      679: <dd>ホストドライバが afpacket の時にバインドするインタフェースを1つ指定します。
1.1.1.9   root      680: <i>ifname</i> が <tt>auto</tt>
                    681: なら使用可能なインタフェースを1つ自動的に選択します。
                    682: デフォルトは <tt>auto</tt> です。
                    683: なお、このホストドライバではローカルホストとの通信は出来ません。
1.1.1.15  root      684: <q>Specifies an interface name to bind to, when the host driver is afpacket.
1.1.1.9   root      685: If <tt>auto</tt> is specified as <i>ifname</i>,
                    686: it selects an usable interface automatically.
                    687: The default is <tt>auto</tt>.
                    688: Note that this host driver cannot communicate with the localhost.</q></p></dd>
1.1.1.17! root      689: <dt class=dt-indent><tt>hostnet<i>N</i>-bpf-ifname = <i>ifname</i></tt></dt>
1.1.1.16  root      690: <dd>ホストドライバが bpf の時にバインドするインタフェースを1つ指定します。
1.1.1.9   root      691: <i>ifname</i> が <tt>auto</tt>
                    692: なら使用可能なインタフェースを1つ自動的に選択します。
                    693: デフォルトは <tt>auto</tt> です。
                    694: なお、このホストドライバではローカルホストとの通信は出来ません。
1.1.1.15  root      695: <q>Specifies an interface name to bind to, when the host driver is bpf.
1.1.1.9   root      696: If <tt>auto</tt> is specified as <i>ifname</i>,
                    697: it selects an usable interface automatically.
                    698: The default is <tt>auto</tt>.
                    699: Note that this host driver cannot communicate with the localhost.</q></p></dd>
1.1.1.17! root      700: <dt class=dt-indent><tt>hostnet<i>N</i>-tap-devpath = <i>path</i></tt></dt>
1.1.1.16  root      701: <dd>ホストドライバが tap の時に使用するデバイスを1つフルパスで指定します。
1.1.1.9   root      702: デフォルトは <tt>auto</tt> で、この場合は自動的にデバイスを選択します。
                    703: この時の探し方はホスト OS によって異なります。
                    704: Linux なら <tt>/dev/net/tun</tt> を指定したのと同じです。
1.1.1.7   root      705: OpenBSD なら <tt>/dev/tap0</tt> から <tt>/dev/tap9</tt> まで
                    706: 順番にオープンできるまで試します。
                    707: NetBSD (と FreeBSD) ならまず <tt>/dev/tap</tt> でクローニングを試み、
                    708: それが失敗すれば <tt>/dev/tap0</tt> から <tt>/dev/tap9</tt> までを
                    709: 順番にオープンできるまで試します。
1.1.1.9   root      710: いずれの場合も VM ディレクトリかその親ディレクトリに
                    711: <tt>nono-ifup</tt>, <tt>nono-ifdown</tt> という名前のシェルスクリプトが必要です。
                    712: 何もすることがない場合でも正常終了する空のシェルスクリプトを用意してください。
                    713: <q>
1.1.1.15  root      714: Specifies a device pathname, when the host driver is tap.
1.1.1.9   root      715: The default is <tt>auto</tt>.
1.1.1.7   root      716: The behavior in this case depends on the host OS.
                    717: On Linux, it's the same as <tt>/dev/net/tun</tt>.
                    718: On OpenBSD, it will try from <tt>/dev/tap0</tt> to <tt>/dev/tap9</tt>
                    719: until successful.
                    720: On NetBSD (and FreeBSD), it will try cloning by <tt>/dev/tap</tt> first.
                    721: If that fails, then try from <tt>/dev/tap0</tt> to <tt>/dev/tap9</tt>
                    722: until successful.
1.1.1.9   root      723: In all cases, you need to prepare two shell script files which names are
                    724: <tt>nono-ifup</tt> and <tt>nono-ifdown</tt> in the VM directory or
                    725: its parent directory.
                    726: Even if you don't have anything to do in these scripts,
1.1.1.12  root      727: you need to prepare empty scripts that will terminate successfully.</q></p></dd>
1.1.1.17! root      728: <dt class=dt-indent><tt>hostnet<i>N</i>-fallback = <i>integer</i></tt></dt>
1.1.1.16  root      729: <dd><tt>hostnet<i>N</i>-driver</tt> で指定したドライバが使用可能でなかった時、
1.1.1.9   root      730: 0 ならプロセスを終了します。
                    731: 1 なら none を選択して実行を継続します。
                    732: デフォルトは 0 です。
1.1.1.15  root      733: <q>Specifies the behavior when the driver which is selected by
1.1.1.16  root      734: <tt>hostnet<i>N</i>-driver</tt> is unusable;
1.1.1.9   root      735: terminate the process if 0,
                    736: or continue to run using the <tt>none</tt> driver if 1.
                    737: The default is 0.</q></p></dd>
1.1.1.15  root      738: <dt class=dt-indent><tt>iplrom1-image = <i>path</i></tt></dt>
                    739: <dd>(X68030 Only)
1.1.1.14  root      740: X68030 の外部 IPLROM イメージファイルのパスを指定します。
                    741: こちらは 0xfe0000..0xffffff の 128KB の部分で、IPLROM30 と呼ばれているほうです。
                    742: <i>path</i> がファイル名のみなら VM ディレクトリとその親ディレクトリからこのファイル名を検索します。
                    743: <i>path</i> が相対パスなら VM ディレクトリからの相対パスになります (現在のディレクトリからではありません)。
                    744: 空にすると無償配布されている IPLROM30 を使用します。
                    745: デフォルトは空です。
                    746: <q>Specifies the X68030's external IPLROM image file path.
                    747: This one contains 128KB at 0xfe0000..0xffffff and is known as IPLROM30.
                    748: If the <i>path</i> does not have any path delimiters,
                    749: the VM directory and then its parent directory will be searched.
                    750: If the <i>path</i> is a relative path,
                    751: it will be path from the VM directory, not from the current directory.
                    752: If the <i>path</i> is empty, the public released IPLROM30 will be used.
1.1.1.15  root      753: The default value is empty.</q></p></dd>
                    754: <dt class=dt-indent><tt>iplrom2-image = <i>path</i></tt></dt>
                    755: <dd>(X68030 Only)
1.1.1.14  root      756: X68030 の外部 IPLROM イメージファイルのパスを指定します。
                    757: こちらは 0xfc0000..0xfdffff の 128KB の部分で、ROM30 と呼ばれているほうです。
                    758: <i>path</i> がファイル名のみなら VM ディレクトリとその親ディレクトリからこのファイル名を検索します。
                    759: <i>path</i> が相対パスなら VM ディレクトリからの相対パスになります (現在のディレクトリからではありません)。
                    760: 空にすると内蔵 ROM を使用します。
                    761: 内蔵 ROM は NetBSD/x68k が起動する程度の SCSI IOCS のみサポートしています。
                    762: デフォルトは空です。
                    763: <q>Specifies the X68030's external IPLROM image file path.
                    764: This one contains 128KB at 0xfc0000..0xfdffff and is known as ROM30.
                    765: If the <i>path</i> does not have any path delimiters,
                    766: the VM directory and then its parent directory will be searched.
                    767: If the <i>path</i> is a relative path,
                    768: it will be path from the VM directory, not from the current directory.
                    769: If the <i>path</i> is empty, internal emulated ROM will be used.
                    770: The ROM supports only enough SCSI IOCS to boot NetBSD/x68k.
1.1.1.15  root      771: The default value is empty.</q></p></dd>
1.1.1.13  root      772: <dt class=dt-indent><tt>keyboard-connect = <i>integer</i></tt></dt>
1.1.1.15  root      773: <dd>(LUNA and X68030 Only)
                    774: 起動時にキーボードを本体に接続するかどうかを指定します。
1.1.1.13  root      775: 1 なら接続し、0 なら接続しません。デフォルトは 1 です。
                    776: 起動後はメニューから変更可能です。
1.1.1.15  root      777: <q>Specifies whether to connect keyboard on boot.
1.1.1.13  root      778: If 1, it is connected; if 0, it isn't connected.  The default is 1.
                    779: You can change it on GUI menu after boot.</q></p></dd>
1.1.1.10  root      780: <dt class=dt-indent><tt>luna-adjust-misused-epoch = <i>integer</i></tt></dt>
1.1.1.14  root      781: <dd>(LUNA Only)
                    782: LUNA で誤った RTC epoch を採用している OS 向けに RTC
1.1.1.10  root      783: エミュレーションを補正するかどうかを
                    784: 指定します。0 なら補正をしません(実機と同じ動作)、
                    785: 1 なら補正します(現実世界と同じ動作)。
                    786: デフォルトは 1 で、通常 1 のままで使用して問題ありません。
                    787: <q>
                    788: Specifies whether nono corrects RTC emulation for OSes
                    789: that adopts wrong RTC epoch on LUNA.
                    790: 0 means making no correction
                    791: (this is the same behavior as the actual machine).
                    792: 1 means making correction
                    793: (this is the same behavior as the real world).
                    794: The default is 1.  Normally, leave it 1.</q>
                    795: <p>
                    796: LUNA で採用している RTC (MK48T02) は2桁で保持している年の値が
                    797: 4 で割り切れる年をうるう年とする仕様です。
1.1.1.13  root      798: ところが NetBSD/luna68k、OpenBSD/luna88k などはこの
                    799: RTC の年の値を 1970年からの経過年として使用しています。
1.1.1.10  root      800: 例えば1970年はうるう年ではないため 2月28日の翌日は 3月1日ですが、
                    801: MK48T02 的には 00年であるためうるう年と認識し 2月28日の翌日が2月29日になります。
1.1.1.13  root      802: このように、これらの OS を使っている場合実機の
                    803: RTC は4年のうち約2年間、1日ずれた日付を指しているようです。
1.1.1.10  root      804: しかしながら、RTC の時刻は OS 起動時に一度読んだ後は基本的に参照しない上、
                    805: 今時必要なら NTP で時間を合わせるため、
                    806: 実機でも問題が顕在化することはまずないと思います。
                    807: nono の場合は実機と異なり、アプリケーション実行中しか RTC が進まないため、
                    808: 補正がない場合の動作が問題になるのは
                    809: nono を起動したまま偶数年の2月末日から日付をまたいで、
                    810: かつ nono を起動したまま OS を再起動して NTP などで時刻修正を行わなかった時
                    811: だけだと思います。
                    812: このオプションはほぼ開発者向けの動作確認用です。</p></dd>
1.1       root      813: <dt class=dt-indent><tt>luna-dipsw1 = <i>string</i></tt></dt>
1.1.1.14  root      814: <dd>(LUNA Only)
                    815: 本体前面 DIPSW#1-1..#1-8 の内容を指定します。
1.1       root      816: "<tt>0</tt>" を DOWN、"<tt>1</tt>" を UP として、
                    817: これを8つ並べた形式で、前から順に #1..#8 に対応します。
1.1.1.15  root      818: <q>Specifies status of the front panel DIPSW#1-1..#1-8 using 8 digits.
1.1.1.2   root      819: "<tt>0</tt>" means DOWN and "<tt>1</tt>" means UP.
                    820: The first character corresponds to #1 and
1.1.1.3   root      821: the eighth character corresponds to #8.</q>
                    822: <p>
                    823: LUNA-I でのデフォルトは <tt>11110111</tt> です。
                    824: 各スイッチの内容は以下のリンクを参照してください。
                    825: <q>On LUNA-I, the default value is <tt>11110111</tt>.
1.1.1.4   root      826: See the following link about DIPSW.</q><br>
1.1.1.3   root      827: → <a href="https://wiki.netbsd.org/ports/luna68k/luna68k_info/"
                    828: >NetBSD/luna68k: Information</a>
1.1       root      829: <br>
1.1.1.13  root      830: LUNA-88K でのデフォルトは <tt>11111111</tt> です。
1.1.1.4   root      831: 各スイッチの内容は以下のリンクを参照してください。
1.1.1.13  root      832: <q>On LUNA-88K, the default value is <tt>11111111</tt>.
1.1.1.4   root      833: See the following link about DIPSW.</q><br>
                    834: → <a href="http://man.openbsd.org/boot_luna88k.8"
1.1.1.15  root      835: >OpenBSD manual pages: boot_luna88k(8)</a>
                    836: <p>
                    837: 自動起動するかどうかとシリアルコンソールを使うかどうかを指定したい場合は
                    838: こちらではなく
                    839: <a href="#config-dipsw-autoboot">dipsw-autoboot、dipsw-serial</a>
                    840: 設定を使うほうが便利です。
                    841: <q>If you only want to specify whether to autoboot and/or
                    842: to use serial console,
                    843: <a href="#config-dipsw-autoboot">dipsw-autoboot, dipsw-serial</a>
                    844: configurations are useful.</q></p></dd>
1.1       root      845: <dt class=dt-indent><tt>luna-dipsw2 = <i>string</i></tt></dt>
1.1.1.14  root      846: <dd>(LUNA Only)
                    847: 本体前面 DIPSW#2-1..#2-8 の内容を指定します。
1.1       root      848: 書式は <tt>luna-dipsw1</tt> と同じです。
                    849: デフォルトは <tt>11111111</tt> です。
1.1.1.2   root      850: <q>Specifies status of the front panel DIPSW#2-1..#2-8.
                    851: The same syntax as <tt>luna-dipsw1</tt> is used.
                    852: The default value is <tt>11111111</tt>.</q>
1.1.1.3   root      853: <p>
1.1.1.4   root      854: NetBSD/luna68k のブートローダは、
                    855: DIPSW#2 が "<tt>11111111</tt>" なら自動的にカーネルをロードして実行し、
                    856: どれかでも "<tt>0</tt>" にするとプロンプトで停止するようです。
1.1.1.2   root      857: <span class=strike>(本当は #8 だけで制御するつもりだったんじゃないかという気がします)</span>
1.1.1.4   root      858: <q>NetBSD/luna68k bootloader will automatically load and execute the kernel,
                    859: if the DIPSW#2 is "<tt>11111111</tt>".
1.1.1.2   root      860: Otherwise, the bootloader will enter interactive mode.
                    861: <span class=strike>(I doubt that they actually wanted to switch with only #8)
1.1.1.12  root      862: </span></q></p></dd>
1.1.1.13  root      863: <dt class=dt-indent><tt>luna-video-plane = <i>integer</i></tt></dt>
1.1.1.14  root      864: <dd>(LUNA Only)
1.1.1.15  root      865: LUNA のビデオボードのプレーン数を 1、4、8 から指定します。
1.1.1.13  root      866: 1 ならモノクロビデオボード、
1.1.1.15  root      867: 4 なら16色 (4bpp) ビデオボード、
                    868: 8 なら 256色 (8bpp) ビデオボードです。
1.1.1.16  root      869: デフォルトは 4 です。
1.1.1.15  root      870: <q>Specifies number of planes on LUNA video board.
                    871: The valid values are 1, 4 or 8.
1.1.1.13  root      872: 1 means a monochrome video board,
1.1.1.15  root      873: 4 means 16-color (4bpp) video board,
                    874: 8 means 256-color (8bpp) video board.
1.1.1.16  root      875: The default value is 4.</q></p></dd>
                    876: <dt class=dt-indent><tt>mainview-scale = <i>double</i></tt></dt>
                    877: <dd>メインウィンドウの起動時のスケールを実数で指定します。
1.1.1.15  root      878: コマンドラインオプション <tt>-s</tt> で上書き可能です。
                    879: 起動後はメニューから、
                    880: プリセットされた倍率とここで指定した倍率には変更可能です。
1.1.1.16  root      881: デフォルトは 1.0 です。</p></dd>
                    882: <dt class=dt-indent><tt>monitor-fontsize = <i>integer</i></tt></dt>
                    883: <dd>テキスト系モニタとステータスパネルのフォントサイズを
1.1.1.15  root      884: 12, 16, 24 から指定します。
                    885: コマンドラインオプション <tt>--fontsize</tt> で上書き可能です。
                    886: 起動後はメニューから変更することができます。
1.1.1.16  root      887: デフォルトは 12 です。</p></dd>
1.1.1.3   root      888: <dt class=dt-indent><tt>monitor-rate = <i>integer</i></tt></dt>
                    889: <dd>テキスト系モニタウィンドウの更新頻度を Hz 単位で指定します。
                    890: 1 から 60 までの間で指定でき、デフォルトは 20Hz です。
1.1.1.16  root      891: 起動後にメニューから、
                    892: プリセットされた頻度とここで指定した頻度には変更可能です。
1.1.1.3   root      893: <q>Specifies refresh rate of all text monitor windows in Hz.
                    894: It ranges from 1 to 60.  The default is 20Hz.
1.1.1.15  root      895: You can choose this value on GUI menu after boot,
1.1.1.16  root      896: from preset rate or rate specified here.</q></p></dd>
1.1       root      897: <dt class=dt-indent><tt>mpu-clock = <i>value</i></tt></dt>
                    898: <dd>MPU のクロック数を MHz 単位で指定します。
1.1.1.15  root      899: デフォルトは LUNA-I なら 20MHz、LUNA-88K と X68030 なら 25MHz です。
1.1.1.17! root      900: <span class="new">virt68k ではあまり意味はありませんが 25MHz です。</span>
1.1.1.5   root      901: <q>Specifies the MPU clock in MHz.
1.1.1.17! root      902: The default value is 20MHz on LUNA-I, or 25MHz on LUNA-88K and X68030.
        !           903: <span class="new">On virt68k, it's less meaningful but 25MHz.</span></q></p></dd>
1.1.1.9   root      904: <dt class=dt-indent><tt>mpu-pseudo-stop = <i>integer</i></tt></dt>
1.1.1.14  root      905: <dd>(LUNA-88K Only)
                    906: m88100 にて疑似 STOP 状態を有効にするかどうかを指定します。
1.1.1.9   root      907: 0 なら無効(実機と同じ動作)、1 なら有効で、デフォルトは 1 です。
                    908: m88100 には、m68k の STOP 命令 (割り込みが上がるまで何もせず待つ)
                    909: に相当する命令がなく、
                    910: 大抵ビジーウェイトループで割り込みが上がるのを待つことになります。
                    911: これは実機では (消費電力を減らす手段がないという些細な問題以外には)
                    912: 何のデメリットもないのですが、
                    913: エミュレータで特に高速動作させている時には割り込みが上がるまで
                    914: (例えば人間がキーを入力するまで) ホスト CPU パワーを使い潰してビジーウェイトループを実行し続けることになり、ホスト CPU があっつあつになります。
                    915: それを防ぐための機能です。
                    916: 特徴的な命令列を検出して実現しているので、すべての状況で動作するわけではありません。</p></dd>
1.1.1.17! root      917: <dt class=dt-indent><tt>nereid0-enable = <i>integer</i><br>nereid1-enable = <i>integer</i><br></tt></dt>
        !           918: <dd>(X68030 Only)
1.1.1.16  root      919: Nereid 拡張ボードを装着するかどうかを指定します。
                    920: Nereid は同時に2枚まで使用することができます。
                    921: 値は <tt>0</tt> なら装着せず、<tt>1</tt> なら装着します。
                    922: デフォルトは <tt>0</tt> (装着しない) です。
1.1.1.17! root      923: 詳細は <a href="#nereid">4.6 Nereid の章</a>を参照してください。
1.1.1.16  root      924: <q>Specifies whether install Nereid expansion board or not.
                    925: Up to two board can be operated at the same time.
                    926: If <tt>0</tt>, the board is not installed.
                    927: If <tt>1</tt>, the board is installed.
                    928: The default value is <tt>0</tt>.
1.1.1.17! root      929: See also <a href="#nereid">Section 4.6 Nereid</a> below for details.</q></p></dd>
        !           930: <dt class=dt-indent><tt>nereid0-net = <i>integer</i><br>nereid1-net = <i>integer</i><br></tt></dt>
        !           931: <dd>(X68030 Only)
1.1.1.16  root      932: Nereid ボードの NIC (RTL8019AS) のみを無効にすることが出来ます
                    933: (実機では通常そのようなことは出来ません)。
                    934: <tt>0</tt> なら無効、<tt>1</tt> なら有効です。デフォルトは <tt>1</tt> です。
                    935: 通常は <tt>1</tt> のまま使用してください。
                    936: この設定は対応する <tt>nereid<i>N</i>-enable</tt> が <tt>0</tt>
                    937: (ボードを装着しない) の場合は意味を持ちません。
                    938: <q>This can disable only NIC (RTL8019AS) of Nereid expansion board
                    939: (although it's not possible normally in the real world).
                    940: It's disabled if <tt>0</tt>, or enabled if <tt>1</tt>.
                    941: The default is <tt>1</tt>.  Normally, leave it <tt>1</tt>.
                    942: This item will be ignored if the corresponding <tt>nereid<i>N</i>-enable</tt>
1.1.1.17! root      943: is <tt>0</tt>.</q></p></dd>
        !           944: <dt class=dt-indent><tt>nereid0-ram-size = <i>integer</i><br>nereid1-ram-size = <i>integer</i><br></tt></dt>
        !           945: <dd>(X68030 Only)
1.1.1.16  root      946: Nereid ボードのバンクメモリのサイズを MB 単位で指定します。
                    947: 指定できるのは <tt>0</tt>, <tt>4</tt>, <tt>16</tt> です。
                    948: <tt>0</tt> を指定するとバンクメモリを無効にします。
                    949: デフォルトは <tt>16</tt> です。
                    950: この設定は対応する <tt>nereid<i>N</i>-enable</tt> が <tt>0</tt>
                    951: (ボードを装着しない) の場合は意味を持ちません。
                    952: <q>Specifies bank memory size in MB of Nereid expansion board.
                    953: The valid values are <tt>0</tt>, <tt>4</tt> or <tt>16</tt>.
                    954: If <tt>0</tt>, disable the bank memory.
                    955: The default is <tt>16</tt>.
                    956: This item will be ignored if the corresponding <tt>nereid<i>N</i>-enable</tt>
                    957: is <tt>0</tt>.</q>
                    958: <br><br>
                    959: また通常は必要ありませんが -4 または -16 を指定すると、
                    960: バンクメモリは無効にした上で Nereid 制御ポートのビット6の読み出し値
                    961: (バンクメモリの容量) を再現することが出来ます。
1.1.1.17! root      962: -4 ならビット6は 0 (4MB)、0 か -16 なら 1(16MB) が読み出せます。</p></dd>
1.1.1.15  root      963: <dt class=dt-indent><tt>news-dipsw = <i>string</i></tt></dt>
                    964: <dd>(NEWS Only)
                    965: DIPSW の内容を指定します。
                    966: "<tt>0</tt>" を OFF、"<tt>1</tt>" を ON として、
                    967: これを8つ並べた形式で、前から順に SW1..SW8 に対応します。
                    968: デフォルトは <tt>00001000</tt> です。
                    969: <q>Specifies status of the DIPSW using 8 digits.
                    970: "<tt>0</tt>" means OFF and "<tt>1</tt>" is ON.
                    971: The first character corresponds to SW1 and
                    972: the eighth character corresponds to SW8.
                    973: The default valus is <tt>00001000</tt>.</q>
                    974: <br><br>
                    975: 各スイッチの内容は以下のリンクを参照してください。
                    976: <q>See the following link about DIPSW.</q><br>
                    977: → <a href="https://www.netbsd.org/ports/news68k/faq.html#dip_sw"
                    978: >NetBSD/news68k Frequently Asked Questions</a>
                    979: <p>
                    980: 自動起動するかどうかとシリアルコンソールを使うかどうかを指定したい場合は
                    981: こちらではなく
                    982: <a href="#config-dipsw-autoboot">dipsw-autoboot、dipsw-serial</a>
                    983: 設定を使うほうが便利です。
                    984: <q>If you only want to specify whether to autoboot and/or
                    985: to use serial console,
                    986: <a href="#config-dipsw-autoboot">dipsw-autoboot, dipsw-serial</a>
                    987: configurations are useful.</q></p></dd>
1.1.1.2   root      988: <dt class=dt-indent><tt>prom-image = <i>path</i></tt></dt>
1.1.1.14  root      989: <dd>(LUNA Only)
                    990: LUNA-I/LUNA-88K の外部 ROM イメージファイルのパスを指定します。
1.1.1.2   root      991: <i>path</i> がファイル名のみなら VM ディレクトリとその親ディレクトリからこのファイル名を検索します。
                    992: <i>path</i> が相対パスなら VM ディレクトリからの相対パスになります (現在のディレクトリからではありません)。
                    993: 空にすると内蔵 ROM を使用します。
                    994: デフォルトは空です。
1.1.1.13  root      995: <q>Specifies the LUNA-I/LUNA-88K's external ROM image file path.
1.1.1.2   root      996: If the <i>path</i> does not have any path delimiters,
                    997: the VM directory and then its parent directory will be searched.
                    998: If the <i>path</i> is a relative path,
1.1.1.14  root      999: it will be path from the VM directory, not from the current directory.
1.1.1.2   root     1000: If the <i>path</i> is empty, internal emulated ROM will be used.
                   1001: The default value is empty.</q>
1.1       root     1002: <p>
1.1.1.2   root     1003: 実機を持っていない場合はこの値を空に (= デフォルトのままに) しておくと、
1.1.1.9   root     1004: nono 内蔵のなんちゃって下位互換 ROM で起動します。
1.1.1.2   root     1005: <q>If you does not have the real LUNA machines,
                   1006: you can boot with nono's internal downward compatible emulated ROM
1.1.1.12  root     1007: if you set this field empty (or leave it as the default).</q>
1.1       root     1008: <p>
1.1.1.4   root     1009: LUNA-I 実機を持っている場合は
                   1010: ROM ファイルを指定することで実機 ROM で起動できます。
1.1.1.2   root     1011: ROM ファイルは実機の 0x41000000-0x4101ffff (128KB) を保存したものです。
1.1.1.3   root     1012: 今のところ ROM は V4.22 (Thu Jul 27 11:45:42 1989) のみサポートしています。
                   1013: それ以外については何も分かりません。
1.1.1.4   root     1014: <q>If you have the real LUNA-I machine,
1.1.1.2   root     1015: you can boot with the real ROM spcifying the ROM file path.
1.1.1.4   root     1016: The ROM file is extracted from 0x41000000-0x4101ffff (128KB) of
                   1017: the real LUNA-I machine.
1.1.1.3   root     1018: For now, only V4.22 (Thu Jul 27 11:45:42 1989) is supported.
1.1.1.12  root     1019: I have no idea about other ROMs.</q>
1.1.1.4   root     1020: <p>
1.1.1.13  root     1021: LUNA-88K 実機の場合は 0x41000000-0x4103ffff (256KB) を保存したものです。
1.1.1.9   root     1022: 今のところ ROM は version 1.20 のみサポートしています。
1.1.1.4   root     1023: <q>
1.1.1.13  root     1024: For LUNA-88K,
1.1.1.4   root     1025: the ROM file is extracted from 0x41000000-0x4103ffff (256KB).
1.1.1.12  root     1026: For now, only version 1.20 is supported.</q></p></dd>
1.1.1.3   root     1027: <dt class=dt-indent><tt>ram-size = <i>integer</i></tt></dt>
1.1.1.14  root     1028: <dd>搭載する RAM サイズを MB 単位で指定します。<q>Specifies the RAM size in MB.</q>
                   1029: <ul>
                   1030: <li>LUNA-I のデフォルトは 16MB です。
1.1.1.7   root     1031: 16MB 未満は 4MB 単位で、
1.1.1.17! root     1032: 16MB 以上は 512MB まで 1MB 単位で指定できます。
        !          1033: ただし <tt>prom-image</tt> で実機イメージを指定した場合は 255MB が上限になります。
        !          1034: ちなみに NetBSD/luna68k の起動には最低でも 8MB 必要です。
1.1.1.14  root     1035: <q>On LUNA-I, the default is 16MB.
1.1.1.7   root     1036: If the size is less than 16MB, you can specify in 4MB unit.
1.1.1.17! root     1037: If larger, you can specify up to 512MB in 1MB unit.
        !          1038: However, if you have <tt>prom-image</tt> with the real image,
        !          1039: the maximum is limited to 255MB.
1.1.1.14  root     1040: By the way, NetBSD/luna68k needs at least 8MB to boot.</q>
                   1041: <li>LUNA-88K のデフォルトは 64MB です。
                   1042: 64MB 未満は 16MB 単位で、
1.1.1.17! root     1043: 64MB 以上は暫定で 512MB まで 1MB 単位で指定できます。
        !          1044: ただし <tt>prom-image</tt> で実機イメージを指定した場合は
        !          1045: 240MB が上限になります。
1.1.1.14  root     1046: <q>On LUNA-88K, the default is 64MB.
1.1.1.7   root     1047: If the size is less than 64MB, you can specify in 16MB unit.
1.1.1.17! root     1048: If larger, you can specify up to tentative 512MB in 1MB unit.
        !          1049: However, if you have <tt>prom-image</tt> with the real image,
        !          1050: the maximum is limited to 240MB.</span></q>
1.1.1.15  root     1051: <li>X68030 ではメイン RAM 容量を示し、デフォルトは 12MB です。
1.1.1.14  root     1052: 4MB から 12MB まで 1MB 単位で指定できます。
1.1.1.16  root     1053: 拡張メモリについては extram-size を参照してください。
1.1.1.15  root     1054: <q>On X68030, the default is 12MB.
                   1055: You can specify it in 1MB unit from 4MB to 12MB.
1.1.1.16  root     1056: See extram-size for extended memory.</q>
1.1.1.15  root     1057: <li>NWS-1750 では現状 16MB で変更できません。
                   1058: <q>On NWS-1750, This is 16MB fixed for now.</q>
1.1.1.17! root     1059: <li><span class="new">virt68k のデフォルトは 128MB です。
        !          1060: 16MB から 4080MB まで(アプリケーションとしては)指定可能です。
        !          1061: 指定された値が 16MB で割り切れない場合は 16MB 単位に切り上げになります。
        !          1062: <q>On virt68k, the default is 128MB and
        !          1063: the range is 16MB to 4080MB.
        !          1064: If the specified size is not divisible by 16MB,
        !          1065: it will be rounded up to 16MB.</q></span>
1.1.1.14  root     1066: </ul></p></dd>
1.1.1.13  root     1067: <dt class=dt-indent><tt>rtc-epoch-year = <i>integer</i></tt></dt>
1.1.1.14  root     1068: <dd>(LUNA Only)
                   1069: RTC (MK48T02) の基準年を指定します。
1.1.1.13  root     1070: デフォルトは 1970年です。
                   1071: NetBSD/luna68k、OpenBSD/luna88k はいずれも基準年を 1970年としていますので、
                   1072: デフォルトのままで構いません。
                   1073: ゲスト OS に 4.4BSD を使用する際は 1900 を指定します。
1.1.1.15  root     1074: NEWS では今の所 1900 固定で変更出来ません。
1.1.1.14  root     1075: <q>Specifies the RTC (MK48T02) epoch year.
1.1.1.13  root     1076: The default is 1970.
                   1077: Since both NetBSD/luna68k and OpenBSD/luna88k use 1970 as epoch year,
                   1078: there is no need to touch this value.
1.1.1.15  root     1079: If you boot 4.4BSD on LUNA-I as the guest OS, specify 1900.
                   1080: On NEWS, it is fixed at 1900.</q></p></dd>
1.1.1.8   root     1081: <dt class=dt-indent><tt>show-statuspanel = <i>integer</i></tt></dt>
                   1082: <dd>ステータスパネルを表示するかどうかを指定します。
                   1083: 0 なら非表示、1 なら表示です。
1.1.1.15  root     1084: デフォルトは 1(表示) です。
1.1.1.8   root     1085: 起動後はメニューから変更可能です。
                   1086: <q>Specifies whether to display the status panel or not.
                   1087: If 0, it is hidden; if 1, it is shown.
1.1.1.15  root     1088: The default is 1 (show).
1.1.1.12  root     1089: You can change it on GUI menu after boot.</q></p></dd>
1.1.1.10  root     1090: <dt class=dt-indent><tt>spc0-id<i>N</i>-image = <i>devtype</i>[,<i>path</i>]</tt></dt>
1.1.1.15  root     1091: <dd>(LUNA and X68030 Only)
                   1092: SCSI デバイスとイメージを指定します。キーの <i>N</i> には 0 から 7 が入ります。
1.1.1.10  root     1093: ただし ID 7 は本体が使用しますので指定しないでください。
                   1094: 値はデバイス種別 <i>devtype</i> とディスクイメージパス <i>path</i>
                   1095: を "<tt>,</tt>"(カンマ) で区切って並べた形式です。
                   1096: デバイス種別 <i>devtype</i> は以下のいずれかです。
1.1.1.2   root     1097: <q>
1.1.1.10  root     1098: Specifies SCSI device and image.  <i>N</i> in the key is 0 to 7.
1.1.1.2   root     1099: But don't specify ID 7 because the host uses it.
                   1100: The value is in a form of device type <i>devtype</i> and
1.1.1.10  root     1101: the disk image path <i>path</i> separated by "<tt>,</tt>"(comma).
1.1.1.12  root     1102: <i>devtype</i> can be one of the following:</q>
1.1.1.10  root     1103: <ul>
                   1104: <li><tt>hd</tt> … HD drive
                   1105: <li><tt>cd</tt> … CD-ROM drive
                   1106: <li><tt>mo</tt> … MO drive
                   1107: </ul>
                   1108: 
                   1109: <p>
                   1110: <i>devtype</i> が <tt>hd</tt> なら <i>path</i> は省略できません。
                   1111: <i>devtype</i> が <tt>cd</tt> か <tt>mo</tt> なら <i>path</i> は省略可能です。
                   1112: イメージパスが相対パスなら VM ディレクトリからの相対パスになります。
                   1113: <q>
                   1114: If <i>devtype</i> is <tt>hd</tt>, <i>path</i> cannot be ommitted.
                   1115: If <i>devtype</i> is <tt>cd</tt> or <tt>mo</tt>, <i>path</i> can be ommitted.
1.1.1.12  root     1116: If the <i>path</i> is relative path, it is from the VM directory.</q>
1.1.1.2   root     1117: 
1.1       root     1118: <p>
1.1.1.10  root     1119: 例えば、nono.cfg と同じディレクトリに置いた sd0.img を
                   1120: 起動 HDD ディスクイメージとして使い
                   1121: (LUNA では通常 ID 6 をプライマリ HDD に割り当てます)、
                   1122: ID 5 に同じディレクトリの install.iso をセットした CD ドライブを、
                   1123: ID 4 に起動時メディアなしの MO ドライブを接続する場合は次のようになります。
                   1124: <q>For example, if you use a harddisk image sd0.img placed in the same
                   1125: directory as nono.cfg
                   1126: (LUNA usually assigns ID 6 to the primary HDD),
                   1127: ID 5 for CD-ROM drive that loads install.iso in the same directory,
                   1128: and ID 4 for MO drive without media on boot,
1.1.1.2   root     1129: write as following:</q>
1.1       root     1130: <blockquote><pre>
1.1.1.10  root     1131: spc0-id6-image = hd,sd0.img
                   1132: spc0-id5-image = cd,install.iso
                   1133: spc0-id4-image = mo
1.1       root     1134: </pre></blockquote></p></dd>
1.1.1.4   root     1135: <dt class=dt-indent><tt>spc0-id<i>N</i>-seektime = <i>integer</i></tt></dt>
1.1.1.15  root     1136: <dd>(LUNA and X68030 Only)
                   1137: 指定の SCSI HDD の平均シークタイムを msec 単位で指定します。
1.1.1.4   root     1138: 現在のデフォルトは <tt>0</tt> です (S・S・D!! S・S・D!!)。
                   1139: 16 程度を指定すると幾分往時に思いを馳せることが出来るかもしれませんが、
                   1140: 今の所あまり安定していません。
                   1141: <q>Specifies the average seek time of specified SCSI HDD in msec.
                   1142: Currently, the default value is <tt>0</tt>
                   1143: (This may be something like SSD :-).
                   1144: If you specify about 16 or so, you can feel nostalgic,
1.1.1.12  root     1145: but this feature is still unstable.</q></p></dd>
1.1.1.10  root     1146: <dt class=dt-indent><tt>spc0-id<i>N</i>-writeignore = <i>integer</i></tt></dt>
1.1.1.15  root     1147: <dd>(LUNA and X68030 Only)
                   1148: 指定の SCSI HD デバイスへの書き込みをイメージに書き戻すかどうか指定します。
1.1       root     1149: <tt>0</tt> なら通常動作(書き込みを行う)です。
1.1.1.15  root     1150: <tt>1</tt> ならディスクイメージに一切書き戻しません。
                   1151: デバイスへ書き込んだはずのデータは Copy-On-Write の要領で、
                   1152: VM ディレクトリ内の一時ファイルに書き込みます。
                   1153: この一時ファイルはアプリケーション終了時に削除します。
1.1       root     1154: fsck を気にせずカーネルのデバッグとかを行いたい場合にはどうぞ。
                   1155: 何が起きるか意味が分からない人は指定しないでください。
1.1.1.2   root     1156: デフォルトは <tt>0</tt> です。
1.1.1.15  root     1157: <q>Specifies whether nono writes a writing to SCSI HD devices back
                   1158: to the diskimage.
                   1159: <tt>0</tt> means normal operation (writes to the diskimage).
                   1160: <tt>1</tt> means that nono will not write to the diskimage back.
                   1161: Data that the guest wrote to the device will be written to a temporary file
                   1162: in the VM directory,
                   1163: like Copy-On-Write.
                   1164: The temporary file will be removed when the application exits.
1.1.1.2   root     1165: This is useful for kernel debugging because it does not require fsck
1.1.1.15  root     1166: after the kernel hangs or reboots.
                   1167: Don't use this flag if you don't understand this paragraph.
1.1.1.10  root     1168: The default value is <tt>0</tt>.</q>
                   1169: <p>
                   1170: ちなみに、メディアを書き込み禁止にしたい場合はこれではなく、
                   1171: イメージファイルの書き込み権を落としてください。
                   1172: <q>By the way, if you want to make the media write-protected,
                   1173: clear the write permission from the image file
                   1174: (instead of this setting).</q></p></dd>
                   1175: <dt class=dt-indent><tt>spc0-id<i>N</i>-writeprotect = <i>integer</i></tt></dt>
1.1.1.15  root     1176: <dd>(LUNA and X68030 Only)
                   1177: 古いオプションです。
1.1.1.10  root     1178: 代わりに <tt>spc0-id<i>N</i>-writeignore</tt> を使ってください。
                   1179: このオプションは開発用です。
                   1180: <q>Obsolete.
                   1181: Use <tt>spc0-id<i>N</i>-writeignore</tt> instead.
1.1.1.12  root     1182: This option is for developers.</q></p></dd>
1.1.1.15  root     1183: <dt class=dt-indent><tt>sram-sync-ramsize = <i>integer</i></tt></dt>
                   1184: <dd>(X68030 Only)
1.1.1.14  root     1185: SRAM の RAM 容量欄を実際の RAM サイズに合わせるかどうかを指定します。
                   1186: <tt>0</tt> なら何もしません (実機と同じ)。
                   1187: <tt>1</tt> なら、アプリケーション起動時に
                   1188: SRAM の $ed0008.L (RAM 容量) を ram-size の設定値で更新します。
                   1189: この更新は、
                   1190: アプリケーション起動時に SRAM マジックが正しく書かれている場合のみ行われます。
                   1191: デフォルトは <tt>1</tt> です。
1.1.1.15  root     1192: <q>Specifies whether to synchronize a RAM size field in SRAM
1.1.1.14  root     1193: with real RAM size or not.
                   1194: If <tt>0</tt>, the application will do nothing (as same as the real).
                   1195: If <tt>1</tt>, the application updates(synchronizes)
                   1196: $ed0008.L (RAM size) in SRAM with configuration value of ram-size.
                   1197: This update is performed once only if
                   1198: the SRAM magic string is correct at the application startup.
1.1.1.15  root     1199: The default is <tt>1</tt>.</q></p></dd>
1.1.1.17! root     1200: <dt class=dt-indent><tt><span class='new'>virtio-block<i>N</i>-image = <i>path</i></span></tt></dt>
        !          1201: <dd><span class="new">
        !          1202: (virt68k only)
        !          1203: virtio のブロックデバイスのイメージを指定します。
        !          1204: キーの <i>N</i> は現状 0 から 7 です。
        !          1205: イメージパスが相対パスなら VM ディレクトリからの相対パスになります。
        !          1206: <q>Specifies virtio block device's image.
        !          1207: <i>N</i> in the key is 0 to 7 for now.
        !          1208: If the path is relative path, it is from the VM directory.</q>
        !          1209: </span></p></dd>
        !          1210: <dt class=dt-indent><tt><span class='new'>virtio-block<i>N</i>-writeignore = <i>integer</i></span></tt></dt>
        !          1211: <dd><span class="new">
        !          1212: (virt68k only)
        !          1213: 指定の virtio ブロックデバイスへの書き込みをイメージに書き戻すかどうか指定します。
        !          1214: <tt>0</tt> なら通常動作(書き込みを行う)です。
        !          1215: <tt>1</tt> ならディスクイメージに一切書き戻しません。
        !          1216: デバイスへ書き込んだはずのデータは Copy-On-Write の要領で、
        !          1217: VM ディレクトリ内の一時ファイルに書き込みます。
        !          1218: この一時ファイルはアプリケーション終了時に削除します。
        !          1219: fsck を気にせずカーネルのデバッグとかを行いたい場合にはどうぞ。
        !          1220: 何が起きるか意味が分からない人は指定しないでください。
1.1.1.15  root     1221: デフォルトは <tt>0</tt> です。
1.1.1.17! root     1222: <q>Specifies whether nono writes a writing to virtio block devices back
        !          1223: to the diskimage.
        !          1224: <tt>0</tt> means normal operation (writes to the diskimage).
        !          1225: <tt>1</tt> means that nono will not write to the diskimage back.
        !          1226: Data that the guest wrote to the device will be written to a temporary file
        !          1227: in the VM directory,
        !          1228: like Copy-On-Write.
        !          1229: The temporary file will be removed when the application exits.
        !          1230: This is useful for kernel debugging because it does not require fsck
        !          1231: after the kernel hangs or reboots.
        !          1232: Don't use this flag if you don't understand this paragraph.
        !          1233: The default value is <tt>0</tt>.</q>
        !          1234: </span>
        !          1235: <p>
        !          1236: <span class="new">
        !          1237: ちなみに、メディアを書き込み禁止にしたい場合はこれではなく、
        !          1238: イメージファイルの書き込み権を落としてください。
        !          1239: <q>By the way, if you want to make the media write-protected,
        !          1240: clear the write permission from the image file
        !          1241: (instead of this setting).</q>
        !          1242: </span></p></dd>
        !          1243: <dt class=dt-indent><tt>windrv-path = <i>path</i></tt></dt>
        !          1244: <dd>(X68030 Only)
        !          1245: Windrv でゲスト側に見せるホストディレクトリを指定します。
        !          1246: 今の所指定できるディレクトリは1つだけです。
        !          1247: 空なら Windrv デバイスが存在しないように振る舞います。
        !          1248: デフォルトは空です。</p></dd>
        !          1249: <dt class=dt-indent><tt>x68k-cut-fc2 = <i>integer</i></tt></dt>
        !          1250: <dd>(X68030 Only)
        !          1251: MPU (68030) の FC2 ピンを切断するかどうかを指定します。
        !          1252: <tt>0</tt> なら切断しません (標準の状態)。
        !          1253: <tt>1</tt> なら切断します。
        !          1254: デフォルトは <tt>1</tt> です。
        !          1255: NetBSD/x68k で X サーバを起動する場合のみ <tt>1</tt> にする必要があります。
        !          1256: <q>Specifies whether to cut MPU(68030) FC2 pin.
        !          1257: If <tt>0</tt>, the FC2 pin is connected as usual.
        !          1258: If <tt>1</tt>, it is disconnected.
        !          1259: The default is <tt>1</tt>.
        !          1260: Only if you run the X server on NetBSD/x68k, it needs to be <tt>1</tt>.</q></p></dd>
1.1       root     1261: </dl>
                   1262: </div>
1.1.1.15  root     1263: </details>
1.1       root     1264: 
                   1265: 
1.1.1.8   root     1266: <a name="aboutvm"></a>
1.1.1.15  root     1267: <details open style="padding-top: 1em">
                   1268: <summary><span class=h4>4. VM について <q>About VM</q></span></summary>
                   1269: <a name=""></a>
                   1270: <details open style="padding-top: 1em">
                   1271: <summary><span class=h5>4.1. 実装状況 <q>Implementation Status</q></span></summary><div class="main">
1.1.1.14  root     1272: <table cellpadding=0 cellspacing=0>
                   1273: <tr><td style="padding-right: 1em">◎ <td>: ほぼ実装済み <q>Mostly implemented</q>
                   1274: <tr><td>○    <td>: 困らない程度には実装済み <q>Works</q>
                   1275: <tr><td>△    <td>: とりあえず動いてる程度 <q>Works somehow</q>
                   1276: <tr><td>×     <td>: 未実装 <q>Not implemented</q>
                   1277: <tr><td>—    <td>: 実装予定なし <q>Not planned</q>
                   1278: </table>
                   1279: <style type="text/css">
                   1280: .pghd {
                   1281:        border: 0px none;
                   1282:        border-bottom: 1px solid black;
                   1283:        padding-top: 1em;
                   1284: }
                   1285: .pgth {
                   1286:        border-top: 0px none;
                   1287:        border-left: 1px solid black;
                   1288:        border-right: 1px solid black;
                   1289:        border-bottom: 1px solid black;
                   1290:        padding-right: 1ex;
                   1291: }
                   1292: .pgtd {
                   1293:        border-top: 0px none;
                   1294:        border-left: 0px none;
                   1295:        border-right: 1px solid black;
                   1296:        border-bottom: 1px solid black;
                   1297: }
                   1298: </style>
                   1299: <table cellspacing=0 cellpadding=0>
                   1300: <tr><td colspan=3 class=pghd>LUNA-I
                   1301: <tr><td class=pgth>MPU (68030)
                   1302:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
1.1.1.17! root     1303:  <td class=pgtd style='padding-left: 0.5ex'>データキャッシュ未実装 <wbr><q>Data cache not implemented</q>
1.1.1.14  root     1304: <tr><td class=pgth>FPU (68881)
                   1305:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1306:  <td class=pgtd style='padding-left: 0.5ex'>
                   1307: <tr><td class=pgth>BT454
                   1308:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1309:  <td class=pgtd style='padding-left: 0.5ex'>
                   1310: <tr><td class=pgth>CRTC2
                   1311:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1312:  <td class=pgtd style='padding-left: 0.5ex'>標準で使用する値のみサポート
                   1313: <tr><td class=pgth>Frame buffer
                   1314:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1315:  <td class=pgtd style='padding-left: 0.5ex'>
                   1316: <tr><td class=pgth>Keyboard/Mouse
                   1317:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1318:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1319: <tr><td class=pgth>SIO (uPD7201)
1.1.1.14  root     1320:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1321:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1322: <tr><td class=pgth>PIO (8255)
1.1.1.14  root     1323:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1324:  <td class=pgtd style='padding-left: 0.5ex'>
                   1325: <tr><td class=pgth>Ethernet (AM7990)
                   1326:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
1.1.1.17! root     1327:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.14  root     1328: <tr><td class=pgth>NVRAM&amp;RTC (MK48T02)
                   1329:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1330:  <td class=pgtd style='padding-left: 0.5ex'>
                   1331: <tr><td class=pgth>Front LCD
                   1332:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1333:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1334: <tr><td class=pgth>SPC (MB89352)
1.1.1.14  root     1335:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1336:  <td class=pgtd style='padding-left: 0.5ex'>
                   1337: <tr><td class=pgth>SCSI HD/CD/MO Devices
                   1338:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1339:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.16  root     1340: <tr><td class=pgth>XP(HD647180) CPU
                   1341:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
1.1.1.15  root     1342:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.16  root     1343: <tr><td class=pgth>XP(HD647180) Timer0/1
                   1344:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
1.1.1.15  root     1345:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.16  root     1346: <tr><td class=pgth>XP(HD647180) その他の内蔵デバイス<br><q>Other internal devices</q>
                   1347:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
1.1.1.15  root     1348:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.16  root     1349: <tr><td class=pgth>XP 周辺デバイス <q>Peripheral devices</q>
                   1350:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
1.1.1.14  root     1351:  <td class=pgtd style='padding-left: 0.5ex'>
                   1352: <tr><td class=pgth>電源 <q>Power Circuit</q>
                   1353:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1354:  <td class=pgtd style='padding-left: 0.5ex'>
                   1355: <tr><td colspan=3 class=pghd>LUNA-88K specific
                   1356: <tr><td class=pgth>MPU (88100 part)
                   1357:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○ 
                   1358:  <td class=pgtd style='padding-left: 0.5ex'>マルチプロセッサ未実装、バグも未実装? <wbr><q>MP (and bugs?) not implemented</q>
                   1359: <tr><td class=pgth>MPU (88200 part)
                   1360:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1361:  <td class=pgtd style='padding-left: 0.5ex'>
                   1362: <tr><td class=pgth>MPU (88110)
                   1363:  <td class=pgtd style='padding: 0 1ex 0 1ex'>—
                   1364:  <td class=pgtd style='padding-left: 0.5ex'>実装予定なし <q>Not planned</q>
                   1365: <tr><td class=pgth>FUSEROM
                   1366:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1367:  <td class=pgtd style='padding-left: 0.5ex'>
                   1368: <tr><td colspan=3 class=pghd>X68030
                   1369: <tr><td class=pgth>MPU (68030)
                   1370:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
1.1.1.17! root     1371:  <td class=pgtd style='padding-left: 0.5ex'>データキャッシュ未実装 <wbr><q>Data cache not implemented</q>
1.1.1.14  root     1372: <tr><td class=pgth>MPU (68EC030)
                   1373:  <td class=pgtd style='padding: 0 1ex 0 1ex'>—
                   1374:  <td class=pgtd style='padding-left: 0.5ex'>実装予定なし <q>Not planned</q>
                   1375: <tr><td class=pgth>FPU (68881)
                   1376:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1377:  <td class=pgtd style='padding-left: 0.5ex'>68882 は未実装 <q>68882 not implemented</q>
                   1378: <tr><td class=pgth>DMAC
1.1.1.17! root     1379:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
1.1.1.14  root     1380:  <td class=pgtd style='padding-left: 0.5ex'>
                   1381: <tr><td class=pgth>CRTC/VC
                   1382:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
                   1383:  <td class=pgtd style='padding-left: 0.5ex'>768x512 のテキスト画面のみサポート <wbr><q>Only 768x512 text screen supported</q>
                   1384: <tr><td class=pgth>FDC/FDD
                   1385:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1386:  <td class=pgtd style='padding-left: 0.5ex'>
                   1387: <tr><td class=pgth>標準・拡張エリアセット <q>Areaset</q>
1.1.1.17! root     1388:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
1.1.1.14  root     1389:  <td class=pgtd style='padding-left: 0.5ex'>
                   1390: <tr><td class=pgth>ADPCM/OPM
                   1391:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1392:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.17! root     1393: <tr><td class=pgth>テキスト画面<q>Text screen</q>
        !          1394:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
        !          1395:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1396: <tr><td class=pgth>コントラスト <wbr><q>Contrast</q>
        !          1397:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
        !          1398:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.14  root     1399: <tr><td class=pgth>グラフィック機能全般 <wbr><q>All other graphics</q>
                   1400:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1401:  <td class=pgtd style='padding-left: 0.5ex'>当面予定なし <q>Not scheduled</q>
                   1402: <tr><td class=pgth>Keyboard
                   1403:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1404:  <td class=pgtd style='padding-left: 0.5ex'>TVコントロールを除く <q>Except TV Control</q>
                   1405: <tr><td class=pgth>Mouse
                   1406:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1407:  <td class=pgtd style='padding-left: 0.5ex'>本体接続のみ
                   1408: <tr><td class=pgth>MFP
                   1409:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
                   1410:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1411: <tr><td class=pgth>PPI (8255)
1.1.1.14  root     1412:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
                   1413:  <td class=pgtd style='padding-left: 0.5ex'>
                   1414: <tr><td class=pgth>Printer
                   1415:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1416:  <td class=pgtd style='padding-left: 0.5ex'>
                   1417: <tr><td class=pgth>RTC
                   1418:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1419:  <td class=pgtd style='padding-left: 0.5ex'>アラームを除く <q>Except Alarm</q>
1.1.1.15  root     1420: <tr><td class=pgth>SPC (MB89352)
1.1.1.14  root     1421:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1422:  <td class=pgtd style='padding-left: 0.5ex'>
                   1423: <tr><td class=pgth>SCSI HD/CD/MO Devices
                   1424:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1425:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1426: <tr><td class=pgth>SCC (Z8530)
1.1.1.14  root     1427:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1428:  <td class=pgtd style='padding-left: 0.5ex'>
                   1429: <tr><td class=pgth>SRAM
                   1430:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1431:  <td class=pgtd style='padding-left: 0.5ex'>
                   1432: <tr><td class=pgth>システムポート<q>System port</q>
                   1433:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
                   1434:  <td class=pgtd style='padding-left: 0.5ex'>
                   1435: <tr><td class=pgth>電源 <q>Power curcuit</q>
                   1436:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1437:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.17! root     1438: <tr><td class=pgth>Nereid Ethernet
        !          1439:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
        !          1440:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1441: <tr><td class=pgth>Nereid Bank memory
        !          1442:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
1.1.1.14  root     1443:  <td class=pgtd style='padding-left: 0.5ex'>
                   1444: <tr><td class=pgth>Nereid USB
                   1445:  <td class=pgtd style='padding: 0 1ex 0 1ex'>—
                   1446:  <td class=pgtd style='padding-left: 0.5ex'>実装予定なし <q>Not planned</q>
1.1.1.16  root     1447: <tr><td class=pgth>拡張メモリ <q>Extended memory</q>
                   1448:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
1.1.1.15  root     1449:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.17! root     1450: <tr><td class=pgth>Windrv
        !          1451:  <td class=pgtd style='padding: 0 1ex 0 1ex'>△
        !          1452:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1453: <tr><td colspan=3 class=pghd>NWS-1750
                   1454: <tr><td class=pgth>MPU (68030)
                   1455:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
1.1.1.17! root     1456:  <td class=pgtd style='padding-left: 0.5ex'>データキャッシュ未実装 <wbr><q>Data cache not implemented</q>
1.1.1.15  root     1457: <tr><td class=pgth>FPU (68881)
                   1458:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1459:  <td class=pgtd style='padding-left: 0.5ex'>68882 は未実装 <q>68882 not implemented</q>
                   1460: <tr><td class=pgth>PROM
                   1461:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1462:  <td class=pgtd style='padding-left: 0.5ex'>
                   1463: <tr><td class=pgth>SCC (Z8530)
                   1464:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1465:  <td class=pgtd style='padding-left: 0.5ex'>チャンネル A のみホストに接続 <wbr><q>Only channel A is connected to the host</q>
                   1466: <tr><td class=pgth>Ethernet (AM7990)
                   1467:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
1.1.1.17! root     1468:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.15  root     1469: <tr><td class=pgth>NVRAM&amp;RTC (MK48T02)
                   1470:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
                   1471:  <td class=pgtd style='padding-left: 0.5ex'>
                   1472: <tr><td class=pgth>Video Board
                   1473:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1474:  <td class=pgtd style='padding-left: 0.5ex'>
                   1475: <tr><td class=pgth>Keyboard/Mouse
                   1476:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1477:  <td class=pgtd style='padding-left: 0.5ex'>
                   1478: <tr><td class=pgth>SCSI Controller
                   1479:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1480:  <td class=pgtd style='padding-left: 0.5ex'>
                   1481: <tr><td class=pgth>IDROM, DIP-SW, 100Hz Timer, 診断用LED
                   1482:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
                   1483:  <td class=pgtd style='padding-left: 0.5ex'>
                   1484: <tr><td class=pgth>AST, Lv2Intr
                   1485:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1486:  <td class=pgtd style='padding-left: 0.5ex'>
                   1487: <tr><td class=pgth>電源 <q>Power Circuit</q>
1.1.1.14  root     1488:  <td class=pgtd style='padding: 0 1ex 0 1ex'>×
                   1489:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.17! root     1490: <tr><td colspan=3 class=pghd><span class="new">virt68k</span>
        !          1491: <tr><td class=pgth>MPU (68030)
        !          1492:  <td class=pgtd style='padding: 0 1ex 0 1ex'>○
        !          1493:  <td class=pgtd style='padding-left: 0.5ex'>データキャッシュ未実装 <wbr><q>Data cache not implemented</q>
        !          1494: <tr><td class=pgth>FPU (68881)
        !          1495:  <td class=pgtd style='padding: 0 1ex 0 1ex'>◎
        !          1496:  <td class=pgtd style='padding-left: 0.5ex'>68882 は未実装 <q>68882 not implemented</q>
        !          1497: <tr><td class=pgth><span class="new">Goldfish PIC</span>
        !          1498:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">◎</span>
        !          1499:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1500: <tr><td class=pgth><span class="new">Goldfish RTC</span>
        !          1501:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">◎</span>
        !          1502:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1503: <tr><td class=pgth><span class="new">Goldfish Timer</span>
        !          1504:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">○</span>
        !          1505:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1506: <tr><td class=pgth><span class="new">Goldfish TTY</span>
        !          1507:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">○</span>
        !          1508:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1509: <tr><td class=pgth><span class="new">virtio v1.0 block</span>
        !          1510:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">○</span>
        !          1511:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1512: <tr><td class=pgth><span class="new">virtio v1.0 net</span>
        !          1513:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">△</span>
        !          1514:  <td class=pgtd style='padding-left: 0.5ex'>
        !          1515: <tr><td class=pgth><span class="new">Power Control</span>
        !          1516:  <td class=pgtd style='padding: 0 1ex 0 1ex'><span class="new">○</span>
        !          1517:  <td class=pgtd style='padding-left: 0.5ex'>
1.1.1.14  root     1518: </table>
                   1519: </div>
1.1.1.15  root     1520: </details>
1.1.1.14  root     1521: 
1.1.1.15  root     1522: <a name=""></a>
                   1523: <details open style="padding-top: 1em">
                   1524: <summary><span class=h5>4.2. MPU (68030)</span></summary><div class="main">
1.1.1.17! root     1525: 68030 は命令キャッシュのみ実装し、データキャッシュは未実装です。
1.1.1.14  root     1526: また ATC (アドレス変換キャッシュ) は実際の仕様とは異なり高速化してあります。
1.1.1.17! root     1527: <q>68030 instruction cache is implemented but data cache is not.
1.1.1.14  root     1528: ATC (Address Translation Cache) is differ from and faster than the real 68030.</q>
                   1529: </div>
1.1.1.15  root     1530: </details>
1.1.1.14  root     1531: 
1.1.1.15  root     1532: <a name=""></a>
                   1533: <details open style="padding-top: 1em">
                   1534: <summary><span class=h5>4.3. LUNA の ROM エミュレーション</span></summary><div class="main">
1.1.1.14  root     1535: LUNA-I、LUNA-88K で PROM の外部イメージを指定しない場合
                   1536: (<tt>prom-image</tt> が空の場合)、
                   1537: 内蔵の独自 ROM が動作し、コンソールモニタが起動します。
                   1538: このコンソールモニタの動作は実機のそれとよく似ていますが、
                   1539: これは実機確認の際に操作方法が違いすぎると(自分が)困るため仕方なく似せているもので、
                   1540: 忠実なコピーを作る目的ではありません。
                   1541: </div>
1.1.1.15  root     1542: </details>
1.1.1.14  root     1543: 
1.1.1.15  root     1544: <a name=""></a>
                   1545: <details open style="padding-top: 1em">
                   1546: <summary><span class=h5>4.4. X68030 の ROM (ROM30) エミュレーション</span></summary><div class="main">
1.1.1.14  root     1547: X68030 で ROM30 の外部イメージを指定しない場合
                   1548: (<tt>iplrom2-image</tt> が空の場合)、内蔵の独自 ROM が組み込まれます。
                   1549: 本来の ROM30 には SCSIIOCS の他に ROM デバッガなどが含まれていますが、
                   1550: 内蔵 ROM はこのうち SCSIIOCS を NetBSD/x68k が起動するのに十分なだけしか
                   1551: 実装していません。
                   1552: Human68k を起動する場合はお手元の実機から ROM イメージを作成してください。
                   1553: </div>
1.1.1.15  root     1554: </details>
1.1.1.14  root     1555: 
1.1.1.17! root     1556: <a name=""></a>
        !          1557: <details open style="padding-top: 1em">
        !          1558: <summary><span class=h5>4.5. NEWS エミュレーション</span></summary><div class="main">
        !          1559: NEWS エミュレーションは今の所
        !          1560: <tt>-X</tt> オプションでカーネルを直接起動することしか出来ません。
        !          1561: PROM も NetBSD/news68k
        !          1562: の起動と終了に最低限必要な程度が誤魔化してあるだけです。
        !          1563: また、デバイスの配置や、デバイスが存在しないアドレスへのアクセスが
        !          1564: どうなるかなどは実機確認をしていないため分かりません。
        !          1565: 従って、動くものは動く、程度のものでしかありません。
        !          1566: というかネタです。
        !          1567: </div>
        !          1568: </details>
        !          1569: 
        !          1570: <a name=""></a>
        !          1571: <details open style="padding-top: 1em">
        !          1572: <summary><span class=h5>4.6. <span class='new'>virt68k エミュレーション</span></span></summary><div class="main">
        !          1573: <span class="new">
        !          1574: QEMU の "virt" (架空ハードウェア仕様)の互換機wをサポートしています。
        !          1575: NetBSD/virt68k が動作します。
        !          1576: <tt>-X</tt> オプション (または設定の <tt>exec-file</tt>)
        !          1577: でカーネルを指定してください。
        !          1578: インストール時には <tt>--initrd</tt> (または設定の <tt>exec-initrd</tt>)
        !          1579: で RAM ディスクイメージも指定します。
        !          1580: また、設定の <tt>hostcom-driver</tt> でシリアルコンソールを
        !          1581: どこかに出力するのもほぼ必須だと思います。
        !          1582: <q>Supports QEMU "virt" virtual hardware's compatible machine and
        !          1583: it can run NetBSD/virt68k.
        !          1584: You need to specify the kernel by <tt>-X</tt> option
        !          1585: (or <tt>exec-file</tt> in configuration).
        !          1586: If you want to install, you also need to specify the ramdisk image by
        !          1587: <tt>--initrd</tt> option (or <tt>exec-initrd</tt> in configuration).
        !          1588: And also, you may need to configure serial console
        !          1589: by <tt>hostcom-driver</tt> in configuration.</q>
        !          1590: </span>
        !          1591: </div>
        !          1592: </details>
        !          1593: 
1.1.1.16  root     1594: <a name="nereid"></a>
                   1595: <details open style="padding-top: 1em">
1.1.1.17! root     1596: <summary><span class=h5>4.7. X68030 の Nereid エミュレーション</span></summary><div class="main">
1.1.1.16  root     1597: 現実の Nereid はイーサネット/メモリ/USB の複合拡張ボードで、
                   1598: このうちメモリは、メインメモリの増設に使える他、
                   1599: メインメモリとして使わなかった領域をバンクメモリとして使うことも出来ます。
                   1600: nono ではこの Nereid の機能のうちイーサネット (RTL8019AS)
                   1601: とバンクメモリのみサポートします。
                   1602: メインメモリの増設機能はエミュレータでは意味がないので実装しません。また
                   1603: USB (SL811HS/T) の実装予定はありません。
                   1604: <q>Nereid in the real world is a combined Ethernet/memory/USB expansion board.
                   1605: Of these, the memory can be used to expand main memory,
                   1606: and areas not used for the main memory can be used as bank memory.
                   1607: nono supports only ethernet (RTL8019AS) and bank memory among
                   1608: the functions of the Nereid expansion board.
                   1609: Main memory expansion is not supported because it's meaningless on emulators.
                   1610: Also, USB (SL811HS/T) is not planned for implementation.</q>
                   1611: <br><br>
                   1612: Nereid は DIPSW6,7 によりアドレス・割り込みベクタの組を2通り指定できるため、
                   1613: 2枚まで同時に運用することが出来ます。
                   1614: 本来 SW6 と SW7 は (衝突さえしなければ) 任意に組み合わせることが可能ですが、
                   1615: nono では簡便のためボード #0 は SW6,7 が OFF、
                   1616: ボード #1 は SW6,7 が ON と固定しています。
                   1617: <q>Since Nereid can set to two different combinations of addresses and
                   1618: interrupt vectors by DIPSW,
                   1619: so up to two boards can be operated at the same time.
                   1620: Originally, SW6 and SW7 can be arbitrarily combined
                   1621: (as long as they don't collide), in nono however, for simpility,
                   1622: SW6 and SW7 are fixed to be OFF on board #0, and
                   1623: SW6 and SW7 are fixed to be ON on board #1.</q>
                   1624: <blockquote>
1.1.1.17! root     1625: <table border=1 rules=all>
1.1.1.16  root     1626: <tr><th><th>#0 (<tt>nereid0-*</tt>)<th>#1 (<tt>nereid1-*</tt>)
                   1627: <tr><td align=center>ベースアドレス・割り込みベクタ<br><q>Base address and interrupt vectors</q>
                   1628:  <td>$ece300,$f9,$fb<br>(SW7=OFF)
                   1629:  <td>$eceb00,$f8,$fa<br>(SW7=ON)
                   1630: <tr><td align=center>バンクメモリウィンドウ<br><q>Bank memory window</q>
                   1631:  <td>$ee0000<br>(SW6=OFF)
                   1632:  <td>$ef0000<br>(SW6=ON)
                   1633: </table>
                   1634: </blockquote>
                   1635: バンクメモリは、メインメモリとして使わなかった領域を使用します。
                   1636: そのため実機でもバンクメモリの容量は DIPSW のメインメモリ割り当て設定
                   1637: (SW1-5) に依存します。
                   1638: nono に関係する結論だけでいうと、
                   1639: メインメモリへの割り当てを一切行わない場合はバンクメモリは 16MB 確保でき、
                   1640: メインメモリへの割り当てをいくらかでも行うとバンクメモリは 4MB となります。
                   1641: 設定の <tt>nereid<i>N</i>-ram-size</tt> はこの部分を指定していることになります。
                   1642: またこの容量とは独立に SW8 でバンクメモリの有効・無効を指定できますので、
                   1643: <tt>nereid<i>N</i>-ram-size</tt> が 0 (以下) というのは SW8
                   1644: でバンクメモリを無効にしたことに相当します。
                   1645: <q>Bank memory uses memory areas not used as the main memory.
                   1646: So the bank memory size depends on the main memory settings (SW1-5).
                   1647: As a result,
                   1648: only if you don't allocate any memories to main memory,
                   1649: the bank memory can be allocated 16MB.
                   1650: Otherwise, the bank memory will be allocated 4MB.
                   1651: Thus, <tt>nereid<i>N</i>-ram-size</tt> specifies this value.
                   1652: Also, SW8 specifies enable/disable of the bank memory regardless of the size,
                   1653: <tt>nereid<i>N</i>-ram-size = 0</tt> (or less) means disabling the bank memory.</q>
1.1.1.17! root     1654: </div>
1.1.1.16  root     1655: </details>
                   1656: 
1.1.1.15  root     1657: <a name=""></a>
                   1658: <details open style="padding-top: 1em">
1.1.1.17! root     1659: <summary><span class=h5>4.8. Windrv</span></summary><div class="main">
        !          1660: Windrv を一応サポートしてみました。
        !          1661: Human68k からホストのファイルシステムをアクセスする機構です。
        !          1662: 既存の Windrv とは、ホスト OS の前提が異なるため既存実装からの移植ではありませんし、
        !          1663: そもそも Human68k とホスト(UNIX)ファイルシステムの差異による制約も多くあります。
        !          1664: これらを把握してから使用してください。
        !          1665: <ul>
        !          1666: <li>ファイル名は21文字すべて認識します。
        !          1667: 22文字以上(というか 18.3 形式以外)のファイル名はゲストからは見えません。
        !          1668: <li>ファイル名中の ASCII 以外の文字には現状対応していません。
        !          1669: これらの文字を含むファイルはゲストからは見えません。
        !          1670: <li>マルチピリオドには対応していません。
        !          1671: このようなファイルはゲストからは見えません。
        !          1672: <li>大文字小文字は区別しません。
        !          1673: 大文字小文字だけが違う同名のファイル (例えば a.BAK と a.bak) があると、
        !          1674: 検索(FILES/NFILES) には現れません。
        !          1675: この状況で a.Bak (大文字小文字を区別していれば違うファイル)
        !          1676: を新規作成しようとすると (大文字小文字を区別しない a.Bak
        !          1677: というエントリはゲスト的には存在しないにも関わらず) 作成できなくしてあります。
        !          1678: <li>ファイルサイズが 2GB 以上のファイルはゲストからは見えません。
        !          1679: <li>Human68k 側の属性は A(アーカイブ)/D(ディレクトリ)/R(読み込み専用)
        !          1680: のみ対応しています。
        !          1681: S(システム)/H(隠しファイル)属性は保存されません。
        !          1682: <li>ホストのシンボリックリンクは、リンク先の
        !          1683: ファイルもしくはディレクトリとして見えます。
        !          1684: またリンク先が Windrv のルートパスの外側を指していても構いません。
        !          1685: <li>ファイルのロックには対応していません。
        !          1686: <li>WindrvXM.sys による拡張動作には対応していません。
        !          1687: windrv 互換として動作します。
        !          1688: <li>TwentyOne.x は現状 +T/-C/-P/-S (いずれもデフォルト) 相当だと思います。
        !          1689: TwentyOne.x が常駐していないとか、
        !          1690: これ以外のオプションの時にどうなるかは把握していません。
        !          1691: <li>lndrv.x によるゲスト側のシンボリックリンク機能には未対応です。
        !          1692: </ul>
        !          1693: <p></p>
        !          1694: Windrv を使用する場合、まず nono
        !          1695: の設定ファイルに <tt>windrv-path</tt> を設定します。
        !          1696: 次にゲストの Human68k の CONFIG.SYS に WINDRV.SYS (または WindrvXM.sys)
        !          1697: を設定してください。
        !          1698: <blockquote>
        !          1699: <pre class=file>
        !          1700: DEVICE = \SYS\WINDRV.SYS
        !          1701: </pre>
        !          1702: </blockquote>
1.1.1.15  root     1703: </div>
                   1704: </details>
                   1705: 
                   1706: <a name=""></a>
                   1707: <details open style="padding-top: 1em">
1.1.1.17! root     1708: <summary><span class=h5>4.9. ステータスパネル <q>Status Panel</q></span></summary><div class="main">
1.1.1.8   root     1709: ステータスパネル中央にあるパフォーマンスメータのアイコンは
                   1710: 高速モードの状態を表示しています。
                   1711: ダブルクリックすると高速/等速モードの指定を切り替えることができます。
                   1712: <q>The performance meter's icon at the center of the status panel
                   1713: shows the VM speed status.
1.1.1.12  root     1714: You can switch full speed / syncronized mode by double-clicking
                   1715: on this icon.</q>
1.1.1.8   root     1716: <table>
                   1717: <tr><td valign=top>
                   1718: <image src="image/sp-ffmark0.png" style="padding:0.5ex; background-color:white">
                   1719: <td valign=top>…
                   1720: <td valign=top>
                   1721: マークなしの場合、ユーザが等速モードを指定していて、等速モードで実行中です。
                   1722: <q>When no icons are displayed,
                   1723: the user has specified syncronized mode and
                   1724: the VM is running in synchronized mode.</q>
                   1725: <tr><td valign=top>
1.1.1.12  root     1726: <image src="image/sp-ffmark2.png" style="padding:0.5ex; background-color:white">
1.1.1.8   root     1727: <td valign=top>…
                   1728: <td valign=top>
1.1.1.12  root     1729: 三角3つの場合、ユーザが高速モードを指定していて、高速モードで実行中です。
1.1.1.9   root     1730: 高速モード中はパーセントではなく何倍速で動作しているかを表します。
1.1.1.12  root     1731: <q>When an icon (three triangles) is displayed,
1.1.1.8   root     1732: the user has specified full speed mode and
1.1.1.12  root     1733: the VM is running in full speed mode.
1.1.1.8   root     1734: <tr><td valign=top>
1.1.1.12  root     1735: <image src="image/sp-ffmark1.png" style="padding:0.5ex; background-color:white">
1.1.1.8   root     1736: <td valign=top>…
                   1737: <td valign=top>
1.1.1.12  root     1738: 三角2つの場合、ユーザが高速モードを指定していて、等速モードで実行中です。
                   1739: 以下のいずれかの状態で起きます。
                   1740: <q>When an icon (two triangles) is displayed,
1.1.1.8   root     1741: the user has specified full speed mode and
1.1.1.12  root     1742: the VM is running in synchronized mode.
                   1743: This will happen when any of the following occurs:</q>
                   1744: <ul>
                   1745: <li>キー押下中(後述)あるいはキーボードブザー発声中
                   1746: <q>When any keys are pressed (see below),
                   1747: or the keyboard buzzer is sounding.
                   1748: <li>STOP instruction on m68k.
                   1749: <li>pseudo STOP state on m88k.
                   1750: </ul>
1.1.1.8   root     1751: </table>
                   1752: </div>
1.1.1.15  root     1753: </details>
1.1.1.8   root     1754: 
1.1.1.15  root     1755: <a name=""></a>
                   1756: <details open style="padding-top: 1em">
1.1.1.17! root     1757: <summary><span class=h5>4.10. DIPSW 設定ウィンドウ</span></summary><div class="main">
1.1.1.15  root     1758: DIPSW 設定ウィンドウでの変更はアプリケーション起動中のみ有効です。
                   1759: またここでの設定は即 VM に反映されますが、
                   1760: LUNA の場合 DIPSW の状態を
                   1761: PIO(8255) がラッチするのが概ね起動時および再起動時のみとなっています
                   1762: (厳密には PROM と XP が云々ですが)。
                   1763: </div>
1.1.1.17! root     1764: </details>
1.1.1.15  root     1765: 
                   1766: <a name=""></a>
                   1767: <details open style="padding-top: 1em">
1.1.1.17! root     1768: <summary><span class=h5>4.11. メモリダンプモニタ <q>Memory Dump Monitor</q></span></summary><div class="main">
1.1.1.15  root     1769: メモリダンプモニタの出力形式を、バイト、ワード、ロングワード
                   1770: (m88k ではそれぞれバイト、ハーフワード、ワードと表現します)
                   1771: から選択できます。
                   1772: また 68030/88200 の MMU ディスクリプタとして表示させることもできます
                   1773: (この位置が正しいディスクリプタかどうかは関係なく表示します)。
1.1.1.17! root     1774: 逆アセンブルは、
        !          1775: LUNA-I なら m68k と HD64180 の逆アセンブルが、
        !          1776: LUNA-88K なら m88k と HD64180 の逆アセンブルが、
        !          1777: X68030<span class="new">/virt68k</span>/NEWS なら m68k の逆アセンブルが選択できます。
1.1.1.15  root     1778: <q>On memory dump monitor,
                   1779: you can choose the output format from byte, word and longword
                   1780: (In m88k, it is represented as byte, halfword and word respectively).
                   1781: Also you can choose 68030/88200 MMU descriptor format
                   1782: (It displays regardless of whether this address is used as descriptor or not).
1.1.1.16  root     1783: Disassemble is now merged from disassemble monitor.
1.1.1.15  root     1784: On LUNA-I, you can choose m68k and HD64180 disassemble.
                   1785: On LUNA-88K, you can choose m88k and HD64180 disassemble.
1.1.1.17! root     1786: On X68030<span class="new">/virt68k</span>/NEWS,
        !          1787: you can choose m68k disassemble.</q>
1.1.1.15  root     1788: <p>
                   1789: 表示されているダンプ値をダブルクリックすることでメモリの値を編集できます。
                   1790: 編集できるのはメモリと以下の部分のみです。
                   1791: <q>You can edit the memory value by double click.
1.1.1.16  root     1792: Only memory and the following areas are editable.</q>
1.1.1.15  root     1793: <ul>
                   1794: <li>NVRAM (LUNA and NEWS Only) …
                   1795: 編集するとただちにファイルも更新します。
1.1.1.17! root     1796: 後ろの8バイトのみ時計レジスタを兼ねているため編集不可です。
1.1.1.15  root     1797: <q>The backend file is also updated immediately when edited.
1.1.1.17! root     1798: The only last 8 bytes are not editable since there are the clock registers.</q>
1.1.1.15  root     1799: <li>Bitmap framebuffer (LUNA Only) … 共通プレーンは書き込み不可です。
                   1800: <q>The common plane is not editable.</q>
                   1801: <li>SRAM (X68030 Only) …
                   1802: 編集するとただちにファイルも更新します。
                   1803: <q>The backend file is also updated immediately when edited.</q>
                   1804: <li>TVRAM とテキストパレット (X68030 Only) <q>Text VRAM and text palette</q>
                   1805: </ul>
                   1806: </div>
1.1.1.17! root     1807: </details>
1.1.1.15  root     1808: 
                   1809: <a name=""></a>
                   1810: <details open style="padding-top: 1em">
1.1.1.17! root     1811: <summary><span class=h5>4.12. デバイスマップモニタ <q>Device Map Monitor</q></span></summary><div class="main">
1.1.1.16  root     1812: m68k/m88k バスに接続されているデバイスを表示します。
                   1813: 32ビットアドレスのうち上位 8 ビット、256個分を表示しています。
                   1814: 1枠が 16MB になります。
                   1815: また、X68030 ではこのうち 24ビット空間を別モニタで表示します。
                   1816: こちらは 1枠 8KB x 2048個です。
                   1817: どちらも内部構造を表示しているだけなので名前に馴染みがない場合があるかもしれません。
1.1.1.17! root     1818: NEWS のデバイスマップは内部構造の都合上、
        !          1819: 内部状態を正確に反映していないケースがあるかも知れません。
1.1.1.16  root     1820: </div>
1.1.1.17! root     1821: </details>
1.1.1.16  root     1822: 
                   1823: <a name=""></a>
                   1824: <details open style="padding-top: 1em">
1.1.1.17! root     1825: <summary><span class=h5>4.13. キー入力モード <q>Key input mode</q></span></summary><div class="main">
1.1.1.14  root     1826: LUNA も X68030 もキーボードは通常日本語キーボードです
                   1827: (LUNA には英語キーボードも存在するようですが…)。
1.1.1.11  root     1828: そのため、ホストが日本語キーボードの場合とそうでない場合のために
                   1829: 2つの入力モードを用意しています。
                   1830: どちらも一長一短があります。
1.1.1.14  root     1831: <q>LUNA and X68030 has the Japanese keyboard
                   1832: (though I ever heard there are US keyboard for LUNA...).
1.1.1.11  root     1833: So nono provides two input modes
                   1834: for Japanese keyboard users and non Japanese keyboard users.
                   1835: Both have advantages and disadvantages.</q>
                   1836: <p>
                   1837: JP キーボードモードは、ホストが日本語キーボードであることを前提に
                   1838: 対応するキーの押下、開放をその都度 VM に入力します。
                   1839: メリットとしては動作が実機に近くなり、
                   1840: 特にキーリピート(をハードウェアが行わないこと)も忠実に再現可能です。
                   1841: デメリットは ALT + TAB やアクセラレータキーでメニューを開く場合などに
                   1842: キー入力が残ることがあることです
                   1843: (キーを押した後でフォーカスが外れるとキーを離したことが
                   1844: アプリケーションに通知されないため)。
                   1845: またホストが日本語キーボードでなければ使いづらいです。
                   1846: <q>JP keyboard mode assumes that the host uses the Japanese keyboard.
                   1847: Each time you presses and releases a key,
                   1848: nono sends the corresponding key-pressed or key-released to the VM.
                   1849: One advantage is that it's close to the real machine behavior,
                   1850: and another is that it can reproduce
                   1851: the LUNA keyboard itself does not perform a key repeat.
                   1852: On the other hand,
                   1853: one disadvantage is that key sometimes remains pressed,
                   1854: especially when you enter ALT + TAB to switch the application
                   1855: or enter accelerator key to open the menu
                   1856: (If the application loses the focus after the key is pressed,
                   1857: the application will not receive the subsequent key release).
                   1858: And another disadvantage is that
1.1.1.12  root     1859: it will be hard to use for non Japenese keyboard users.</q>
1.1.1.11  root     1860: <p>
                   1861: 一方、キャラクタ入力モードは、ホストから入力された「文字」を
1.1.1.14  root     1862: 再び LUNA/X68030 のキーコードに解釈し直して VM に入力するモードです。
1.1.1.11  root     1863: 例えばゲスト OS に "@" を入力したい場合、
                   1864: US キーボードなら [SHIFT] + [2] を、
                   1865: JP キーボードなら [@] キーを押しますが、
                   1866: どちらも VM には [@] キーの押下、[@] キーの開放が連続して送られます。
                   1867: US キーボードで [SHIFT] を押したことは通知されません。
                   1868: 逆に "=" を入力したい場合、
                   1869: US キーボードなら [=] キーを、
                   1870: JP キーボードなら [SHIFT] + [-] を押しますが、
                   1871: どちらも VM には
                   1872: [SHIFT]押下 → [-]押下 → [-]開放 → [SHIFT]開放のシーケンスが送られます。
                   1873: このようにホストキーボードのレイアウトによらず、
                   1874: 入力したい文字が入力できるようになり、
                   1875: 通常のタイピングで困ることはないと思います。
                   1876: デメリットは、通常の文字入力以外のタイピングはほぼ出来ないことです。
                   1877: [SHIFT] キーを押したままにすることや、
                   1878: 文字が入力できないキーの組み合わせは入力出来ません。
                   1879: もう一つのデメリットはキーリピート(をハードウェアが行わないこと)が再現できず、
                   1880: ホスト側のキーリピートが効いてしまうことです
                   1881: (本来キーリピートが動作しない ROM やブートローダでもキーリピートが効くことは
                   1882: 一般ユーザからはメリットに感じられるかも知れませんが)。
                   1883: <q>In contrast, in the character mode, when you type a character,
1.1.1.14  root     1884: nono re-converts it into the LUNA/X68030's key code and sends it to the VM.
1.1.1.11  root     1885: For example if you want to type "@" in the guest OS,
                   1886: you would press [SHIFT] + [2] on the US keyboard or [@] on the JP keyboard.
                   1887: In both cases, the sequence of
                   1888: [@]-pressed and [@]-released will be sent to the VM.
                   1889: Note that the fact that you pressed [SHIFT] key on the US keyboard
                   1890: will not be sent to the VM.
                   1891: Another example, if you want to type "=",
                   1892: you would press [=] on the US keyboard or [SHIFT] + [-] on the JP keyboard.
                   1893: In both cases, the sequence of
                   1894: [SHIFT]-pressed, [-]-pressed, [-]-released, and [SHIFT]-released
                   1895: will be sent to the VM.
                   1896: Thus, you can type what character you want to type,
                   1897: regardless of your keyboard layout.
                   1898: Of course there are some disadvantages.
                   1899: Firstly, it's hard to type any special characters,
                   1900: for example, you can not type any key conbinations
                   1901: that don't generate a character.
                   1902: Or you can not hold [SHIFT] key pressed.
                   1903: Secondly, the key repeat works (by the host),
                   1904: even though it should not work as a correct emulation
                   1905: (Although some of you may feel it an advantage).</q>
                   1906: </div>
1.1.1.15  root     1907: </details>
1.1.1.11  root     1908: 
1.1.1.15  root     1909: <a name=""></a>
                   1910: <details open style="padding-top: 1em">
1.1.1.17! root     1911: <summary><span class=h5>4.14. キャラクタ入力モードのキーコード対応表 <q>Keycode table in the character mode</q></span></summary><div class="main">
1.1.1.11  root     1912: キャラクタ入力モードでの、ホストから入力した文字と
                   1913: VM に送信されるキーの対応は次の通りです。
                   1914: ファンクションキーとカーソルキーは文字ではありませんが
                   1915: 特別に対応しています。
1.1.1.14  root     1916: ここに記載のないゲストキーはソフトウェアキーボードからのみ入力できます。
1.1.1.11  root     1917: <q>The following table shows the correspondence between
                   1918: the character that typed from the host
                   1919: and the key that will be sent to the VM.
                   1920: nono can recognize the function keys and arrow keys.
1.1.1.14  root     1921: The keys that not listed in this table can
1.1.1.11  root     1922: only be typed from the software keyboard window.</q>
                   1923: <p>
                   1924: <center>
                   1925: <style type="text/css">
                   1926: .keytable-whole {
                   1927:        display: inline-block;
                   1928:        vertical-align: top;
1.1.1.17! root     1929:        border-bottom: solid 1px;
1.1.1.11  root     1930: }
                   1931: .keytable-middle {
                   1932:        margin-left: 1em;
                   1933:        margin-right: 1em;
                   1934: }
                   1935: 
                   1936: .keytable-head {
                   1937:        text-align: left;
1.1.1.17! root     1938:        border-top:    solid 1px;
1.1.1.11  root     1939:        border-bottom: solid 1px;
                   1940: }
                   1941: .keytable-headl {
                   1942:        padding-right: 1em;
1.1.1.17! root     1943:        border-left:   solid 1px;
        !          1944:        border-right:  solid 1px;
        !          1945: }
        !          1946: .keytable-headr {
        !          1947:        border-right:  solid 1px;
1.1.1.11  root     1948: }
                   1949: 
                   1950: .keytable-tdl {
                   1951:        padding-right: 1em;
1.1.1.17! root     1952:        border-left:   solid 1px;
        !          1953:        border-right:  solid 1px;
1.1.1.11  root     1954: }
                   1955: .keytable-tdr {
1.1.1.17! root     1956:        border-right:  solid 1px;
1.1.1.11  root     1957: }
                   1958: </style>
                   1959: <table class='keytable-whole keytable-left' cellspacing=0 cellpadding=1>
                   1960: <tr><th class='keytable-head keytable-headl'>HostChar<th class='keytable-head keytable-headr'>GuestKey
                   1961: <tr><td class='keytable-tdl'><tt>a</tt> 〜 <tt>z</tt><td class='keytable-tdr'>[A] 〜 [Z]
                   1962: <tr><td class='keytable-tdl'><tt>0</tt> 〜 <tt>9</tt><td class='keytable-tdr'>[0] 〜 [9]
                   1963: <tr><td class='keytable-tdl'>SPACE<td class='keytable-tdr'>[SPACE]
                   1964: <tr><td class='keytable-tdl'><tt>-</tt><td class='keytable-tdr'>[-]
                   1965: <tr><td class='keytable-tdl'><tt>^</tt><td class='keytable-tdr'>[^]
                   1966: <tr><td class='keytable-tdl'><tt>&bsol;</tt><td class='keytable-tdr'>[&bsol;]
                   1967: <tr><td class='keytable-tdl'><tt>@</tt><td class='keytable-tdr'>[@]
                   1968: <tr><td class='keytable-tdl'><tt>[</tt><td class='keytable-tdr'>[[]
                   1969: <tr><td class='keytable-tdl'><tt>;</tt><td class='keytable-tdr'>[;]
                   1970: <tr><td class='keytable-tdl'><tt>:</tt><td class='keytable-tdr'>[:]
                   1971: <tr><td class='keytable-tdl'><tt>]</tt><td class='keytable-tdr'>[]]
                   1972: <tr><td class='keytable-tdl'><tt>,</tt><td class='keytable-tdr'>[,]
                   1973: <tr><td class='keytable-tdl'><tt>.</tt><td class='keytable-tdr'>[.]
                   1974: <tr><td class='keytable-tdl'><tt>/</tt><td class='keytable-tdr'>[/]
                   1975: </table>
                   1976: <table class='keytable-whole keytable-middle' cellspacing=0 cellpadding=1>
                   1977: <tr><th class='keytable-head keytable-headl'>HostChar<th class='keytable-head keytable-headr'>GuestKey
                   1978: <tr><td class='keytable-tdl'><tt>A</tt> 〜 <tt>Z</tt><td class='keytable-tdr'>[SHIFT]+[A] 〜 [SHIFT]+[Z]
                   1979: <tr><td class='keytable-tdl'><tt>!</tt><td class='keytable-tdr'>[SHIFT]+[1]
                   1980: <tr><td class='keytable-tdl'><tt>"</tt><td class='keytable-tdr'>[SHIFT]+[2]
                   1981: <tr><td class='keytable-tdl'><tt>#</tt><td class='keytable-tdr'>[SHIFT]+[3]
                   1982: <tr><td class='keytable-tdl'><tt>$</tt><td class='keytable-tdr'>[SHIFT]+[4]
                   1983: <tr><td class='keytable-tdl'><tt>%</tt><td class='keytable-tdr'>[SHIFT]+[5]
                   1984: <tr><td class='keytable-tdl'><tt>&amp;</tt><td class='keytable-tdr'>[SHIFT]+[6]
                   1985: <tr><td class='keytable-tdl'><tt>'</tt><td class='keytable-tdr'>[SHIFT]+[7]
                   1986: <tr><td class='keytable-tdl'><tt>(</tt><td class='keytable-tdr'>[SHIFT]+[8]
                   1987: <tr><td class='keytable-tdl'><tt>)</tt><td class='keytable-tdr'>[SHIFT]+[9]
                   1988: <tr><td class='keytable-tdl'><tt>=</tt><td class='keytable-tdr'>[SHIFT]+[-]
                   1989: <tr><td class='keytable-tdl'><tt>~</tt><td class='keytable-tdr'>[SHIFT]+[^]
                   1990: <tr><td class='keytable-tdl'><tt>|</tt><td class='keytable-tdr'>[SHIFT]+[&bsol;]
                   1991: <tr><td class='keytable-tdl'><tt>`</tt><td class='keytable-tdr'>[SHIFT]+[@]
                   1992: <tr><td class='keytable-tdl'><tt>{</tt><td class='keytable-tdr'>[SHIFT]+[[]
                   1993: <tr><td class='keytable-tdl'><tt>+</tt><td class='keytable-tdr'>[SHIFT]+[;]
                   1994: <tr><td class='keytable-tdl'><tt>*</tt><td class='keytable-tdr'>[SHIFT]+[:]
                   1995: <tr><td class='keytable-tdl'><tt>]</tt><td class='keytable-tdr'>[SHIFT]+[]]
                   1996: <tr><td class='keytable-tdl'><tt>&lt;</tt><td class='keytable-tdr'>[SHIFT]+[,]
                   1997: <tr><td class='keytable-tdl'><tt>&gt;</tt><td class='keytable-tdr'>[SHIFT]+[.]
                   1998: <tr><td class='keytable-tdl'><tt>?</tt><td class='keytable-tdr'>[SHIFT]+[/]
                   1999: <tr><td class='keytable-tdl'><tt>_</tt><td class='keytable-tdr'>[SHIFT]+[_]
                   2000: </table>
1.1.1.14  root     2001: <table class='keytable-whole keytable-middle' cellspacing=0 cellpadding=1>
1.1.1.11  root     2002: <tr><th class='keytable-head keytable-headl'>HostChar<th class='keytable-head keytable-headr'>GuestKey
                   2003: <tr><td class='keytable-tdl'>F1 〜 F10<td class='keytable-tdr'>[PF1] 〜 [PF10]
1.1.1.15  root     2004: <tr><td class='keytable-tdl'>F11<td class='keytable-tdr'>[PF10]
1.1.1.11  root     2005: <tr><td class='keytable-tdl'>↑<td class='keytable-tdr'>[↑]
                   2006: <tr><td class='keytable-tdl'>←<td class='keytable-tdr'>[←]
                   2007: <tr><td class='keytable-tdl'>→<td class='keytable-tdr'>[→]
                   2008: <tr><td class='keytable-tdl'>↓<td class='keytable-tdr'>[↓]
1.1.1.14  root     2009: <tr><td class='keytable-tdl'><tt>^@</tt><td class='keytable-tdr'>[CTRL]+[@]
                   2010: <tr><td class='keytable-tdl'><tt>^A</tt> 〜 <tt>^Z</tt><td class='keytable-tdr'>[CTRL]+[A] 〜 [CTRL]+[Z]
                   2011: <tr><td class='keytable-tdl'><tt>^[</tt><td class='keytable-tdr'>[ESC]
                   2012: <tr><td class='keytable-tdl'><tt>^\</tt><td class='keytable-tdr'>[CTRL]+[&bsol;]
                   2013: <tr><td class='keytable-tdl'><tt>^]</tt><td class='keytable-tdr'>[CTRL]+[]]
                   2014: <tr><td class='keytable-tdl'><tt>^^</tt><td class='keytable-tdr'>[CTRL]+[^]
                   2015: <tr><td class='keytable-tdl'><tt>^_</tt><td class='keytable-tdr'>[CTRL]+[_]
                   2016: <tr><td class='keytable-tdl'><tt>^H</tt><td class='keytable-tdr'>[BS]
                   2017: <tr><td class='keytable-tdl'><tt>^I</tt><td class='keytable-tdr'>[TAB]
                   2018: <tr><td class='keytable-tdl'><tt>^M</tt><td class='keytable-tdr'>[Enter]
1.1.1.11  root     2019: </table>
                   2020: </center>
                   2021: </div>
1.1.1.15  root     2022: </details>
1.1.1.11  root     2023: 
1.1.1.15  root     2024: <a name=""></a>
                   2025: <details open style="padding-top: 1em">
1.1.1.17! root     2026: <summary><span class=h5>4.15. JP キーボードモードのキーコード対応表 <q>Keycode table in the JP keyboard mode</q></span></summary><div class="main">
1.1.1.11  root     2027: JP キーボードモードでの、ホストキーと VM に送信されるキーの対応は次の通りです。
1.1.1.14  root     2028: ここに記載のないキーはソフトウェアキーボードからのみ入力出来ます。
1.1.1.11  root     2029: <q>The following table shows the correspondence between
                   2030: the host key and the guest key.
1.1.1.17! root     2031: The keys that not listed in this table can only be entered from
1.1.1.11  root     2032: the software keyboard window.</q>
                   2033: <p>
                   2034: <center>
                   2035: <table class='keytable-whole keytable-left' cellspacing=0 cellpadding=0>
                   2036: <tr><th class='keytable-head keytable-headl'>HostKey<th class='keytable-head keytable-headr'>GuestKey
                   2037: <tr><td class='keytable-tdl'>[0] 〜 [9]<td class='keytable-tdr'>[0] 〜 [9]
                   2038: <tr><td class='keytable-tdl'>[A] 〜 [Z]<td class='keytable-tdr'>[A] 〜 [Z]
                   2039: <tr><td class='keytable-tdl'>[-]<td class='keytable-tdr'>[-]
                   2040: <tr><td class='keytable-tdl'>[^]<td class='keytable-tdr'>[^]
                   2041: <tr><td class='keytable-tdl'>[&bsol;]<td class='keytable-tdr'>[&bsol;]
                   2042: <tr><td class='keytable-tdl'>[@]<td class='keytable-tdr'>[@]
                   2043: <tr><td class='keytable-tdl'>[[]<td class='keytable-tdr'>[[]
                   2044: <tr><td class='keytable-tdl'>[;]<td class='keytable-tdr'>[;]
                   2045: <tr><td class='keytable-tdl'>[:]<td class='keytable-tdr'>[:]
                   2046: <tr><td class='keytable-tdl'>[]]<td class='keytable-tdr'>[]]
                   2047: <tr><td class='keytable-tdl'>[,]<td class='keytable-tdr'>[,]
                   2048: <tr><td class='keytable-tdl'>[.]<td class='keytable-tdr'>[.]
                   2049: </table>
                   2050: <table class='keytable-whole keytable-middle' cellspacing=0 cellpadding=0>
                   2051: <tr><th class='keytable-head keytable-headl'>HostKey<th class='keytable-head keytable-headr'>GuestKey
1.1.1.17! root     2052: <tr><td class='keytable-tdl'>[/]<td class='keytable-tdr'>[/]
        !          2053: <tr><td class='keytable-tdl'>[_]<td class='keytable-tdr'>[_]
1.1.1.11  root     2054: <tr><td class='keytable-tdl'>[ESC]<td class='keytable-tdr'>[ESC]
                   2055: <tr><td class='keytable-tdl'>[TAB]<td class='keytable-tdr'>[TAB]
                   2056: <tr><td class='keytable-tdl'>[CTRL]<td class='keytable-tdr'>[CTRL]
1.1.1.14  root     2057: <tr><td class='keytable-tdl'>[SHIFT-L]<td class='keytable-tdr'>[SHIFT-L]
                   2058: <tr><td class='keytable-tdl'>[SHIFT-R]<td class='keytable-tdr'>[SHIFT-R]
1.1.1.17! root     2059: <tr><td class='keytable-tdl'>[Enter]<td class='keytable-tdr'>[Enter]
1.1.1.14  root     2060: <tr><td class='keytable-tdl'>[↑]<td class='keytable-tdr'>[↑]
                   2061: <tr><td class='keytable-tdl'>[←]<td class='keytable-tdr'>[←]
                   2062: <tr><td class='keytable-tdl'>[→]<td class='keytable-tdr'>[→]
                   2063: <tr><td class='keytable-tdl'>[↓]<td class='keytable-tdr'>[↓]
                   2064: </table>
                   2065: <table class='keytable-whole keytable-right' cellspacing=0 cellpadding=0>
                   2066: <tr><th class='keytable-head keytable-headl'>HostKey<th class='keytable-head keytable-headr'>GuestKey
1.1.1.17! root     2067: <tr><td class='keytable-tdl'>[BS]<td class='keytable-tdr'>[BS]
        !          2068: <tr><td class='keytable-tdl'>[Delete]<td class='keytable-tdr'>[DEL]
        !          2069: <tr><td class='keytable-tdl'>[F1] 〜 [F10]<td class='keytable-tdr'>[PF1] 〜 [PF10]
        !          2070: <tr><td class='keytable-tdl'>[F11]<td class='keytable-tdr'>[PF10]
1.1.1.11  root     2071: <tr><td class='keytable-tdl'>Numpad[0]〜[9]<td class='keytable-tdr'>Numpad[0]〜[9]
                   2072: <tr><td class='keytable-tdl'>Numpad[+]<td class='keytable-tdr'>Numpad[+]
                   2073: <tr><td class='keytable-tdl'>Numpad[-]<td class='keytable-tdr'>Numpad[-]
                   2074: <tr><td class='keytable-tdl'>Numpad[*]<td class='keytable-tdr'>Numpad[*]
                   2075: <tr><td class='keytable-tdl'>Numpad[/]<td class='keytable-tdr'>Numpad[/]
                   2076: <tr><td class='keytable-tdl'>Numpad[=]<td class='keytable-tdr'>Numpad[=]
                   2077: <tr><td class='keytable-tdl'>Numpad[.]<td class='keytable-tdr'>Numpad[.]
                   2078: <tr><td class='keytable-tdl'>Numpad[Enter]<td class='keytable-tdr'>Numpad[Enter]
                   2079: </table>
1.1.1.17! root     2080: <br>
        !          2081: <table class='keytable-whole keytable-left' cellspacing=0 cellpadding=0>
        !          2082: <caption>(X68030 Only)</caption>
        !          2083: <tr><th class='keytable-head keytable-headl'>HostKey<th class='keytable-head keytable-headr'>GuestKey
        !          2084: <tr><td class='keytable-tdl'>[Home]<td class='keytable-tdr'>[HOME]
        !          2085: <tr><td class='keytable-tdl'>[Insert]<td class='keytable-tdr'>[INS]
        !          2086: <tr><td class='keytable-tdl'>[PageUp]<td class='keytable-tdr'>[ROLL UP]
        !          2087: <tr><td class='keytable-tdl'>[PageDown]<td class='keytable-tdr'>[ROLL DOWN]
        !          2088: <tr><td class='keytable-tdl'>[End]<td class='keytable-tdr'>[UNDO]
        !          2089: </table>
1.1.1.11  root     2090: </center>
                   2091: </div>
1.1.1.15  root     2092: </details>
1.1.1.11  root     2093: 
1.1.1.15  root     2094: <a name=""></a>
                   2095: <details open style="padding-top: 1em">
1.1.1.17! root     2096: <summary><span class=h5>4.16. キーリピート <q>Key Repeat</q></span></summary><div class="main">
1.1.1.8   root     2097: LUNA では、キーボードがハードウェア側でキーリピートを行わず、
                   2098: ソフトウェア(OS など)がキーリピートの処理を行います。
                   2099: そのため、キーリピートを実装していない LUNA の PROM や
                   2100: NetBSD/luna68k のブートローダではキーリピートは起きず、
                   2101: キーリピートを実装している NetBSD/luna68k カーネルではキーリピートが起こせます。
1.1.1.9   root     2102: キーリピートを起こす間隔をゲストのソフトウェアが測定しているということは、
1.1.1.8   root     2103: VM が高速動作するとキーリピートもそれに合わせて発生することになり、
                   2104: これをホスト側から防ぐ手段はありません。
                   2105: そこで nono ではキー入力が発生している間
                   2106: (キーが一つでも押されてからキーが全て離されるまでの間)、
                   2107: 高速モードが指示されていても VM を一時的に等速モードに落として実行します。
                   2108: 上記のアイコンがそれを区別しているのはこのためです。
                   2109: そのため、何らかの理由でキーが入りっぱなしになった場合
                   2110: (ALT + TAB やアクセラレータキーでメニューを開くと起きがちです)
                   2111: 高速モードが抑制されたままということが起きえます。
                   2112: その場合はソフトウェアキーボードからキー入力を解除するなどしてください。
1.1.1.11  root     2113: <q>On LUNA,
1.1.1.8   root     2114: key repeat is done by software(OS), not by the keyboard hardware.
                   2115: For this reason,
                   2116: key repeat doesn't occur on LUNA's PROM or NetBSD/luna68k's bootloader
                   2117: that don't implement it, and
                   2118: key repeat occurs on NetBSD/luna68k kernel that implements it.
1.1.1.9   root     2119: Since the timing of key repeat is measured by the guest software,
1.1.1.8   root     2120: if the VM is running faster than the real,
                   2121: the key repeat will occur faster, too.
                   2122: The host application doesn't have the way to avoid it.
                   2123: Therefore, nono will temporarily suppress the full speed mode
                   2124: while any keys are pressed.
                   2125: That is why the above-mentioned icon distinguishes them.
1.1.1.9   root     2126: If keys continue to be pressed for some reasons,
1.1.1.8   root     2127: the VM also continues to run syncronized mode.
1.1.1.12  root     2128: In this case, you can resolve it by using the software keyboard window.</q>
1.1.1.8   root     2129: </div>
1.1.1.15  root     2130: </details>
                   2131: </details>
1.1.1.8   root     2132: 
1.1.1.14  root     2133: 
1.1.1.8   root     2134: <a name="tryit"></a>
1.1.1.15  root     2135: <details open style="padding-top: 1em">
                   2136: <summary><span class=h4>5. 実行してみる <q>Try it</q></span></summary><a name=""></a>
                   2137: <details open style="padding-top: 1em">
                   2138: <summary><span class=h5>5.1. NetBSD/luna68k を実行してみる <q>Try NetBSD/luna68k</q></span></summary><div class="main">
1.1.1.9   root     2139: つついさんが NetBSD/luna68k 9.2 の liveimage を用意されています。
                   2140: <q>Tsutsui-san has provided a liveimage of NetBSD/luna68k 9.2.</q>
                   2141: <dl>
1.1.1.12  root     2142: <dd><a href="https://twitter.com/tsutsuii/status/1436381589211017217"
                   2143: >https://twitter.com/tsutsuii/status/1436381589211017217</a><br>
1.1.1.9   root     2144: </dl>
                   2145: ここではこれを起動してみます。<q>Let's try it.</q>
1.1.1.2   root     2146: <br>
                   2147: <ol>
                   2148: <li>どこかに nono 用のディレクトリを用意し(例えば ~/nono/)、
1.1       root     2149: その中に VM ディレクトリを用意します (例えば ~/nono/luna/)。
1.1.1.3   root     2150: <q>Create a directory somewhere for nono (for example ~/nono/),
1.1.1.9   root     2151: and create subdirectories for individual VMs in it
                   2152: (for example ~/nono/luna/).</q>
1.1       root     2153: 
1.1.1.3   root     2154: <li>以下のリンクからイメージファイルをダウンロードして展開し、
1.1.1.2   root     2155: VM ディレクトリ ~/nono/luna/ に置きます。
1.1.1.3   root     2156: <q>Download imagefile from the following link,
1.1.1.8   root     2157: extract it and place it in the VM directory, ~/nono/luna/.</q>
1.1.1.3   root     2158: <blockquote>
1.1.1.12  root     2159: <a href="http://teokurebsd.org/netbsd/liveimage/20210910-luna68k/"
                   2160: >http://teokurebsd.org/netbsd/liveimage/20210910-luna68k/</a>
1.1.1.3   root     2161: </blockquote>
1.1.1.2   root     2162: 
1.1.1.9   root     2163: <li>以下の内容の設定ファイル nono.cfg を VM ディレクトリ ~/nono/luna/
                   2164: に作成します。
                   2165: ここでは説明を簡単にするためネットワークなしにしていますが、
                   2166: ネットワーク設定は必要に応じて行ってください。
1.1.1.8   root     2167: <q>Create a configuration file nono.cfg in the VM directory, ~/nono/luna/,
1.1.1.9   root     2168: with following contents.
                   2169: By the way, to simplify the explanation, we assume there is no network here.
                   2170: However, please configure the network if necessary.</q>
1.1.1.2   root     2171: <blockquote class="file"><pre>
                   2172: vmtype = luna
1.1.1.12  root     2173: spc0-id6-image = hd,liveimage-luna68k-with-packages-20210910.img
1.1.1.9   root     2174: hostnet-driver = none
1.1.1.2   root     2175: </pre></blockquote>
1.1.1.9   root     2176: 
1.1.1.2   root     2177: <li><tt>nono -c ~/nono/luna</tt> で起動します
                   2178: (VM ディレクトリに自動的に NVRAM.DAT が作られます)。
                   2179: <q>Run as <tt>nono -c ~/nono/luna</tt>.
1.1.1.4   root     2180: (NVRAM.DAT will be created automatically in the VM directory)</q>
1.1.1.14  root     2181: 
1.1.1.2   root     2182: <li>Emulated ROM Monitor が起動するので、
                   2183: 初回は以下のように入力すると NetBSD が起動します。
                   2184: <q>The emulated ROM Monitor will be executed.
                   2185: Then, only for the first time,
                   2186: entering the following can boot NetBSD.</q>
1.1.1.9   root     2187: <blockquote><pre>
                   2188: k&#x23ce;
                   2189: &#x23ce;
                   2190: &#x23ce;
                   2191: d&#x23ce;
                   2192: boot&#x23ce;
                   2193: g&#x23ce;
                   2194: x&#x23ce;
                   2195: </pre></blockquote>
                   2196: 画面はこんな感じのはずです (太字が入力部分)。
                   2197: <q>You will see a screen like this.  The bold text indicates
                   2198: the characters you need to enter.</q>
1.1.1.2   root     2199: <blockquote class="file"><pre>
1.1.1.17! root     2200: NONO 0.7.0 Emulated ROM Monitor for LUNA-I
1.1.1.9   root     2201: 
                   2202: ** NVRAM Initialized.
                   2203: 
                   2204: &gt;<b>k&#x23ce;</b>
                   2205: controller: dk  ?<b>&#x23ce;</b>
                   2206: drive unit: 0  ?<b>&#x23ce;</b>
                   2207: partition : c  ?<b>d&#x23ce;</b>
                   2208: filename  : vmunix  ?<b>boot&#x23ce;</b>
                   2209: &gt;<b>g&#x23ce;</b>
                   2210: Loaded.  Entry point = $00700000
                   2211: &gt;<b>x&#x23ce;</b>
1.1.1.2   root     2212: </pre></blockquote>
                   2213: この内容は NVRAM.DAT に記録されているので次回以降は直接 NetBSD が起動します。
1.1.1.8   root     2214: <q>The information you have just entered is recorded in the NVRAM,
1.1.1.14  root     2215: so next time it will boot NetBSD automatically.</q>
1.1.1.9   root     2216: <li>初回起動時、
                   2217: Updating fontconfig cache はあほみたいに時間がかかりますが、
                   2218: nono がハングアップしてるわけではありません(>_<)。
1.1.1.14  root     2219: また初回は起動後数時間めちゃくちゃ重たいですが、
1.1.1.9   root     2220: これはバックグラウンドで makemandb が動くためで
                   2221: nono のせいではありません(>_<)。
                   2222: <q>At the first boot, you will see the console stops after printing
                   2223: "Updating fontconfig cache".
                   2224: This is because the infamous fontconfig takes very looooong time.
                   2225: nono would not have hang-up.
1.1.1.14  root     2226: In addition, at the first boot, you will feel it's too heavy for several hours.
1.1.1.9   root     2227: This is because the infamous makemandb(8) runs heavily in the background
                   2228: for a looooong time.
                   2229: It's very sad to me that these two accidents which are far from the ideal
1.1.1.13  root     2230: are the first experiences of newcomers.</q>
1.1.1.9   root     2231: 
                   2232: <li>終了する時は root
                   2233: ユーザで &ldquo;<tt>shutdown -p now</tt>&rdquo; を実行してください。
                   2234: LUNA はソフトウェアから電源オフでき、
                   2235: VM の電源オフで nono も終了します。
                   2236: <q>To quit, type &ldquo;<tt>shutdown -p now</tt>&rdquo; as the root user.
                   2237: LUNA can be powered off by software,
                   2238: and nono will terminate when the VM is powered off.</q>
1.1.1.2   root     2239: </ol>
1.1       root     2240: </div>
1.1.1.15  root     2241: </details>
1.1       root     2242: 
1.1.1.15  root     2243: <a name=""></a>
                   2244: <details open style="padding-top: 1em">
                   2245: <summary><span class=h5>5.2. OpenBSD/luna88k を実行してみる <q>Try OpenBSD/luna88k</q></span></summary><div class="main">
1.1.1.17! root     2246: あおやまさんが OpenBSD/luna88k 7.4 の liveimage を用意されています。
        !          2247: <q>Aoyama-san has provided a liveimage of OpenBSD/luna88k 7.4.</q>
1.1.1.9   root     2248: <dl>
1.1.1.17! root     2249: <dd><a href="https://bsd.network/@ao_kenji/111250570715336091"
        !          2250: >https://bsd.network/@ao_kenji/111250570715336091</a>
1.1.1.9   root     2251: </dl>
                   2252: ここではこれを起動してみます。<q>Let's try it.</q>
                   2253: <br>
                   2254: <ol>
                   2255: <li>どこかに nono 用のディレクトリを用意し(例えば ~/nono/)、
                   2256: その中に VM ディレクトリを用意します (例えば ~/nono/luna88k/)。
                   2257: <q>Create a directory somewhere for nono (for example ~/nono/),
                   2258: and create subdirectories for individual VMs in it
                   2259: (for example ~/nono/luna88k/).</q>
                   2260: 
1.1.1.17! root     2261: <li>以下のリンクから liveimage-luna88k-raw-20231016.img.gz
1.1.1.9   root     2262: をダウンロードして展開し、
                   2263: VM ディレクトリ ~/nono/luna88k/ に置きます。
1.1.1.17! root     2264: <q>Download liveimage-luna88k-raw-20231016.img.gz from the following link,
1.1.1.9   root     2265: extract it and place it in the VM directory, ~/nono/luna88k/.</q>
                   2266: <blockquote>
                   2267: <a href="http://www.nk-home.net/~aoyama/liveimage/"
                   2268: >http://www.nk-home.net/~aoyama/liveimage/</a>
                   2269: </blockquote>
                   2270: 
                   2271: <li>以下の内容の設定ファイル nono.cfg を VM ディレクトリ ~/nono/luna88k/
                   2272: に作成します。
                   2273: ここでは説明を簡単にするためネットワークなしにしていますが、
                   2274: ネットワーク設定は必要に応じて行ってください。
                   2275: <q>Create a configuration file nono.cfg in the VM directory, ~/nono/luna88k/,
                   2276: with following contents.
                   2277: By the way, to simplify the explanation, we assume there is no network here.
                   2278: However, please configure the network if necessary.</q>
                   2279: <blockquote class="file"><pre>
                   2280: vmtype = luna88k
1.1.1.17! root     2281: spc0-id6-image = hd,liveimage-luna88k-raw-20231016.img
1.1.1.9   root     2282: hostnet-driver = none
                   2283: </pre></blockquote>
                   2284: 
                   2285: <li><tt>nono -c ~/nono/luna88k</tt> で起動します
                   2286: (VM ディレクトリに自動的に NVRAM.DAT が作られます)。
                   2287: <q>Run as <tt>nono -c ~/nono/luna88k</tt>.
                   2288: (NVRAM.DAT will be created automatically in the VM directory)</q>
                   2289: <li>Emulated ROM Monitor が起動するので、
                   2290: 初回は以下のように入力すると OpenBSD が起動します。
                   2291: <q>The emulated ROM Monitor will be executed.
                   2292: Then, only for the first time,
                   2293: entering the following can boot OpenBSD.</q>
                   2294: <blockquote><pre>
                   2295: nvram boot_filename boot&#x23ce;
                   2296: y
                   2297: b&#x23ce;
                   2298: </pre></blockquote>
                   2299: 画面はこんな感じのはずです (太字が入力部分)。
                   2300: <q>You will see a screen like this.  The bold text indicates
                   2301: the characters you need to enter.</q>
                   2302: <blockquote class="file"><pre>
1.1.1.17! root     2303: NONO 0.7.0 Emulated ROM Monitor for LUNA-88K
1.1.1.9   root     2304: 
                   2305: ** NVRAM Initialized.
                   2306: 
                   2307: N&gt;<b>nvram boot_filename boot&#x23ce;</b>
                   2308: Update boot_filename : "vmunix" -&gt; "boot" (Y/[N]):<b>y</b>
                   2309: Updated
                   2310: N&gt;<b>b&#x23ce;</b>
                   2311: </pre></blockquote>
                   2312: この内容は NVRAM.DAT に記録されているので次回以降は直接 OpenBSD が起動します。
                   2313: <q>The information you have just entered is recorded in the NVRAM,
1.1.1.14  root     2314: so next time it will boot OpenBSD automatically.</q>
1.1.1.9   root     2315: 
                   2316: <li>終了する時は root
                   2317: ユーザで &ldquo;<tt>shutdown -p now</tt>&rdquo; を実行してください。
1.1.1.13  root     2318: LUNA-88K はソフトウェアから電源オフでき、
1.1.1.9   root     2319: VM の電源オフで nono も終了します。
                   2320: <q>To quit, type &ldquo;<tt>shutdown -p now</tt>&rdquo; as the root user.
1.1.1.13  root     2321: LUNA-88K can be powered off by software,
1.1.1.9   root     2322: and nono will terminate when the VM is powered off.</q>
                   2323: </ol>
                   2324: </div>
1.1.1.15  root     2325: </details>
1.1.1.9   root     2326: 
1.1.1.15  root     2327: 
                   2328: <a name=""></a>
                   2329: <details open style="padding-top: 1em">
                   2330: <summary><span class=h5>5.3. NetBSD/x68k を実行してみる <q>Try NetBSD/x68k</q></span></summary><div class="main">
1.1.1.17! root     2331: つついさんが NetBSD/x68k 10.0_BETA の liveimage を用意されています。
1.1.1.14  root     2332: ここではこれを起動してみます。
1.1.1.17! root     2333: <q>Tsutsui-san has provided a liveimage of NetBSD/x68k 10.0_BETA.
        !          2334: Let's try it.</q>
1.1.1.14  root     2335: <br>
                   2336: <ol>
                   2337: <li>どこかに nono 用のディレクトリを用意し(例えば ~/nono/)、
                   2338: その中に VM ディレクトリを用意します (例えば ~/nono/x68k/)。
                   2339: <q>Create a directory somewhere for nono (for example ~/nono/),
                   2340: and create subdirectories for individual VMs in it
                   2341: (for example ~/nono/x68k/).</q>
                   2342: 
                   2343: <li>以下のリンクから
                   2344: plain-install か with-packages のお好みのほうをダウンロードして展開し、
                   2345: VM ディレクトリ ~/nono/x68k/ に置きます。
                   2346: <q>Download your favorite one of plain-install or with-packages
                   2347: from the following link,
                   2348: extract it and place it in the VM directory, ~/nono/x68k/.</q>
1.1.1.15  root     2349: <blockquote>
1.1.1.17! root     2350: <a href="http://teokurebsd.org/netbsd/liveimage/20230111-x68k/"
        !          2351: >http://teokurebsd.org/netbsd/liveimage/20230111-x68k/</a>
1.1.1.14  root     2352: </blockquote>
                   2353: 
                   2354: <li>以下の内容の設定ファイル nono.cfg を VM ディレクトリ ~/nono/x68k/
                   2355: に作成します。
1.1.1.17! root     2356: ここでは説明を簡単にするためネットワークなしにしていますが、
        !          2357: ネットワーク設定は必要に応じて行ってください。
1.1.1.14  root     2358: <q>Create a configuration file nono.cfg in the VM directory, ~/nono/x68k/,
                   2359: with following contents.
1.1.1.17! root     2360: By the way, to simplify the explanation, we assume there is no network here.
        !          2361: However, please configure the network if necessary.</q>
1.1.1.14  root     2362: <blockquote class="file"><pre>
                   2363: vmtype = x68030
1.1.1.17! root     2364: spc0-id0-image = hd,liveimage-x68k-with-packages-20230111.hds
1.1.1.16  root     2365: hostnet0-driver = none
1.1.1.14  root     2366: </pre></blockquote>
                   2367: 
1.1.1.16  root     2368: <li>初回のみ <tt>nono -c ~/nono/x68k --create-sram</tt> を実行します。
1.1.1.15  root     2369: これで VM ディレクトリに初期状態の SRAM.DAT が作られます。
                   2370: <q>Only the first time, run as <tt>nono -c ~/nono/x68k --create-sram</tt>.
1.1.1.16  root     2371: This will create an initial SRAM.DAT in the VM directory.</q>
1.1.1.15  root     2372: 
                   2373: <li><tt>nono -c ~/nono/x68k</tt> で起動すると、
1.1.1.14  root     2374: HDD から NetBSD/x68k が起動します。
                   2375: 次回以降はこれだけで直接 NetBSD が起動します。
                   2376: <q>Again, run as <tt>nono -c ~/nono/x68k</tt>.
                   2377: NetBSD/x68k will be booted from HDD.
                   2378: Next time, it will boot NetBSD automatically.</q>
                   2379: 
                   2380: <li>初回起動後数時間はめちゃくちゃ重たいですが、
                   2381: これはバックグラウンドで makemandb が動くためで
                   2382: nono のせいではありません(>_<)。
                   2383: <q>At the first boot, you will feel it's too heavy for several hours.
                   2384: This is because the infamous makemandb(8) runs heavily in the background
                   2385: for a looooong time.
                   2386: It's very sad to me that an accident which is far from the ideal
                   2387: is the first experiences of newcomers.</q>
                   2388: 
                   2389: <li>NetBSD が起動した後なら (正確には powerd(8) が起動していれば)、
                   2390: 終了する時はメニューの「デバイス &gt; 操作 &gt; 電源ボタンを押す」
                   2391: でシャットダウンして電源オフになり、
                   2392: VM の電源オフで nono も終了します。
                   2393: <q>After NetBSD boots up (more precisely, if powerd(8) is running),
                   2394: you can shutdown and power off by
                   2395: "Device &gt; Operation &gt; Push Power button" on menu,
                   2396: and nono will terminate when the VM is powered off.</q>
                   2397: </ul>
                   2398: </div>
1.1.1.15  root     2399: </details>
1.1.1.17! root     2400: 
        !          2401: 
        !          2402: <a name=""></a>
        !          2403: <details open style="padding-top: 1em">
        !          2404: <summary><span class=h5>5.4. <span class='new'>NetBSD/virt68k をインストールしてみる <q>Try installing NetBSD/virt68k</q></span></span></summary><div class="main">
        !          2405: <span class="new">
        !          2406: ここでは NetBSD/virt68k をクリーンインストールする手順だけ紹介します。
        !          2407: <q>Here I will introduce how to install NetBSD/virt68k.</q>
        !          2408: <br>
        !          2409: <ol class="new">
        !          2410: <li>どこかに nono 用のディレクトリを用意し(例えば ~/nono/)、
        !          2411: その中に VM ディレクトリを用意します (例えば ~/nono/virt68k/)。
        !          2412: <q>Create a directory somewhere for nono (for example ~/nono/),
        !          2413: and create subdirectories for individual VMs in it
        !          2414: (for example ~/nono/virt68k/).</q>
        !          2415: 
        !          2416: <li>空のディスクイメージを用意します。
        !          2417: 1GB でもインストール自体は出来ますが、もう少し大きいほうが安心です。
        !          2418: <q>Prepare an empty disk image file.
        !          2419: You can install it with 1GB at least,
        !          2420: but it would be safer if it was a little larger.</q>
        !          2421: <blockquote class="cons"><pre>
        !          2422: dd if=/dev/zero of=virt68k.img bs=1m count=2048
        !          2423: </pre></blockquote>
        !          2424: 
        !          2425: <li>以下の内容の設定ファイル nono.cfg を VM ディレクトリ ~/nono/virt68k
        !          2426: に作成します。
        !          2427: ネットワークは別途設定してください。
        !          2428: <q>Create a configuration file nono.cfg in the VM directory, ~/nono/virt68k/,
        !          2429: with following contents.
        !          2430: You may also need network configuration.</q>
        !          2431: <blockquote class="file"><pre>
        !          2432: vmtype = virt68k
        !          2433: virtio-block0-image = virt68k.img
        !          2434: hostcom-driver = stdio
        !          2435: hostnet-driver = auto
        !          2436: </pre></blockquote>
        !          2437: 
        !          2438: <li>NetBSD/virt68k のインストールセットはまだ用意されてないようなので、
        !          2439: NetBSD のソースコードから build.sh でビルドします。
        !          2440: <q>There doesn't seem to be the official NetBSD/virt68k set available yet.
        !          2441: You have to build it manually from the source code. :(</q>
        !          2442: 
        !          2443: <li>以下のコマンドラインで起動します。
        !          2444: <q>Run as the following:</q>
        !          2445: <blockquote class="cons"><pre>
        !          2446: nono -c ~/nono/virt68k -f \
        !          2447:  -X &lt;path&gt;/release/virt68k/binary/kernel/netbsd-GENERIC.gz \
        !          2448:  --initrd &lt;path&gt;/release/virt68k/installation/ramdisks/inst-ramdisk.fs
        !          2449: </pre></blockquote>
        !          2450: 
        !          2451: <li>しばらくすると root パーティションなどを聞かれるので Enter を 4回押します。
        !          2452: またしばらくすると見慣れたインストーラが起動してきます。
        !          2453: <q>After a while, you will be asked about the root partition, etc.,
        !          2454: so hit Enter key four times.
        !          2455: After a while again, the familiar installer will start.</q>
        !          2456: <blockquote class="cons"><pre>
        !          2457: [   1.0000030] root device (default md0a): <b>&#x23ce;</b>
        !          2458: [   1.0200030] dump device (default md0b): <b>&#x23ce;</b>
        !          2459: [   1.0300030] file system (default ffs): <b>&#x23ce;</b>
        !          2460: [   1.0400030] root on md0a dumps on md0b
        !          2461: [   1.0600030] kern.module.path=/stand/virt68k/10.99.10/modules
        !          2462: [   1.1200030] init path (default /sbin/init): <b>&#x23ce;</b>
        !          2463: [   1.1400030] init: trying /sbin/init
        !          2464:  :
        !          2465: </pre></blockquote>
        !          2466: </span>
        !          2467: </div>
        !          2468: </details>
1.1.1.15  root     2469: </details>
1.1.1.9   root     2470: 
1.1       root     2471: 
1.1.1.8   root     2472: <a name="network"></a>
1.1.1.15  root     2473: <details open style="padding-top: 1em">
                   2474: <summary><span class=h4>6. ホストネットワーク設定例 <q>Example of host network setup</q></span></summary><div class=main>
1.1.1.9   root     2475: wm0 を持つ NetBSD ホストに tap(4) デバイスを用いて
                   2476: nono のゲスト OS を接続する場合の設定例です。
                   2477: <ol>
                   2478: <li>
                   2479: 設定ファイル nono.cfg に以下の行を追加します
                   2480: (と言いつつ NetBSD では書かなくてもデフォルトでこの動作になりますが)
                   2481: <q>Add the following line to configuration file, nono.cfg.
                   2482: (Although you don't need to write it since these are default behavior
                   2483: on NetBSD)</q>
1.1       root     2484: <blockquote class="file"><pre>
1.1.1.9   root     2485: hostnet-driver = tap
                   2486: hostnet-tap-devpath = auto
1.1       root     2487: </pre></blockquote>
1.1.1.9   root     2488: 
1.1.1.5   root     2489: <li>デフォルトでは /dev/tap は一般ユーザからアクセスできないので、
                   2490: chmod で適当にパーミッションを与えます。
                   2491: 番号の付いていないほうの /dev/tap だけでいいです。
                   2492: sysinst 等で OS をアップグレードするとパーミッションが 600
                   2493: に戻るのがハマりポイントです。
1.1.1.9   root     2494: <q>By default, /dev/tap is only accessible to privileged user.
                   2495: You need to chmod /dev/tap (without unit number) appropriately.
1.1.1.17! root     2496: Note that upgrading using sysinst always resets the permission to 600.</q>
1.1.1.5   root     2497: 
                   2498: <li>bridge(4) インタフェースを作成し、
1.1.1.9   root     2499: ホストの外部(物理)インタフェースをブリッジに追加しておきます。
1.1.1.5   root     2500: <q>Create a bridge(4) interface, and
                   2501: add your physical interface to the bridge.</q>
1.1       root     2502: <blockquote class="cons"><pre>
1.1.1.5   root     2503: # ifconfig bridge0 create
1.1       root     2504: # brconfig bridge0 add wm0
                   2505: </pre></blockquote>
1.1.1.9   root     2506: 常用するなら /etc の設定ファイルに書いておきましょう。
                   2507: <q>If you use it regularly,
1.1.1.5   root     2508: you can put configuration file into /etc.</q>
                   2509: <blockquote>
                   2510: /etc/ifconfig.bridge0
                   2511: <pre class=file>
                   2512: create
                   2513: up
                   2514: !/sbin/brconfig $int add wm0
                   2515: </pre>
                   2516: <pre class=cons>
                   2517: # /etc/rc.d/network restart
                   2518: </pre>
                   2519: </blockquote>
                   2520: 
                   2521: <li>
                   2522: 一般ユーザに戻って、
                   2523: VM ディレクトリかその親ディレクトリに
                   2524: 次のような 2つのスクリプトを用意します。
1.1.1.9   root     2525: nono は tap(4) をオープンし、
                   2526: そのデバイス名を引数にこれらのスクリプトを呼びます。
1.1.1.5   root     2527: sudo の設定は別途行ってください。
                   2528: <q>Return to non-privileged user, and
                   2529: create following two scripts in the VM directory or its parent directory.
1.1.1.9   root     2530: nono will open tap(4) and
                   2531: invoke these scripts with the name of the device as an argument.
1.1.1.5   root     2532: In addition, you need to set up sudo separately.</q>
1.1       root     2533: <blockquote>
                   2534: nono-ifup
                   2535: <pre class=file>
                   2536: #!/bin/sh
1.1.1.5   root     2537: sudo /sbin/ifconfig $1 up
                   2538: sudo /sbin/brconfig bridge0 add $1
1.1       root     2539: </pre></blockquote>
                   2540: 
                   2541: <blockquote>
1.1.1.5   root     2542: nono-ifdown
1.1       root     2543: <pre class=file>
                   2544: #!/bin/sh
1.1.1.5   root     2545: sudo /sbin/brconfig bridge0 delete $1
                   2546: sudo /sbin/ifconfig $1 down
                   2547: </pre></blockquote>
                   2548: 
                   2549: <blockquote class="cons"><pre>
                   2550: % chmod +x nono-ifup nono-ifdown
1.1       root     2551: </pre></blockquote>
                   2552: 
1.1.1.5   root     2553: <li>nono を起動し、
                   2554: メニューの「モニタ &gt; ホスト &gt; ホストネットワーク」を開いて
1.1.1.9   root     2555: HostNet Driver: tap になっていれば動いてるはずです。
1.1.1.5   root     2556: <q>Run nono,
                   2557: and open "Monitor &gt; Host &gt; Host Network" window from menu.
1.1.1.9   root     2558: It's OK if you can see "HostNet Driver: tap".</q>
1.1.1.5   root     2559: 
                   2560: </ol>
1.1       root     2561: </div>
1.1.1.15  root     2562: </details>
                   2563: 
1.1       root     2564: 
1.1.1.13  root     2565: <a name="knownissues"></a>
1.1.1.15  root     2566: <details open style="padding-top: 1em">
                   2567: <summary><span class=h4>7. 既知の問題 <q>Known Issues</q></span></summary><div class="main">
1.1.1.13  root     2568: <ul>
1.1.1.14  root     2569: <li>デバッガのコンソール入力で、
1.1.1.15  root     2570: カーソルキーなどの特殊文字入力に対する表示が動作していません。
                   2571: <q>In debugger console, some special characters like cursor keys
1.1.1.13  root     2572: aren't printed correctly.</q>
1.1.1.14  root     2573: (since ver 0.3.0)
1.1.1.13  root     2574: <li>ホストが VirtualBox (on Windows?) で、
                   2575: VirtualBox の「マウス統合」が有効にしている場合、
                   2576: nono の「マウスモード」でマウスポインタが正しく移動しません。
                   2577: <q>If the host OS is running on VirtualBox (on Windows?) and
                   2578: "Mouse integration" on VirtualBox is enabled,
                   2579: the mouse pointer will not move as expected in nono's Mouse Mode.</q>
                   2580: (2021/12/30)
                   2581: 
                   2582: <li>Wayland の場合にウィンドウサイズが正しく設定されない場合があります。
                   2583: wxWidgets (3.0.5) のバグと思われます。
                   2584: <q>On Wayland, window size may be incorrect.
                   2585: This may be due to wxWidgets (3.0.5) bug.</q>
                   2586: (2021/12/30)
                   2587: 
                   2588: </ul>
                   2589: </div>
1.1.1.15  root     2590: </details>
                   2591: 
1.1       root     2592: 
1.1.1.10  root     2593: <a name="migrate"></a>
1.1.1.15  root     2594: <details open style="padding-top: 1em">
                   2595: <summary><span class=h4>8. 過去のバージョンからの移行方法 <q>How to migrate from old versions</q></span></summary><div class="main">
1.1.1.10  root     2596: バージョンアップに伴い設定ファイル等に非互換が発生する場合があります。
                   2597: その場合は以下の移行方法を参照して設定ファイル等を更新してください。
                   2598: <q>Some versions may have incompatibilities in the configuration files, etc.
                   2599: In such case, you may need to upgrade it by referring the following link.</q>
                   2600: <ul>
1.1.1.14  root     2601: <li><a href="upgrade-0.3.0.html">From ver 0.2.x to ver 0.3.0</a>
1.1.1.10  root     2602: <li><a href="upgrade-0.2.0.html">From ver 0.1.x to ver 0.2.0</a>
                   2603: </ul>
                   2604: </div>
1.1.1.15  root     2605: </details>
                   2606: 
1.1.1.2   root     2607: 
1.1.1.11  root     2608: <a name="changes"></a>
1.1.1.15  root     2609: <details open style="padding-top: 1em">
                   2610: <summary><span class=h4>9. 変更履歴 <q>Changes</q></span></summary><div class="main">
1.1.1.11  root     2611: See <a href="changes.html">changes.html</a>.
                   2612: </div>
1.1.1.15  root     2613: </details>
1.1.1.11  root     2614: 
                   2615: 
1.1.1.15  root     2616: <a name="license"></a>
                   2617: <details open style="padding-top: 1em">
                   2618: <summary><span class=h4>10. 連絡先、ライセンス等 <q>Contact, License, etc</q></span></summary>
                   2619: <a name=""></a>
                   2620: <details open style="padding-top: 1em">
                   2621: <summary><span class=h5>10.1. ライセンス <q>License</q></span></summary><div class="main">
                   2622: <ul>
                   2623: <li>
                   2624: nono 自身については
                   2625: <a href="nono-license.txt">nono-license.txt</a> を読んでください。
                   2626: <q>See nono-license.txt about nono itself.</q>
                   2627: <li>
                   2628: nono は無償公開されている X68030 の IPLROM を使用しています。
1.1.1.14  root     2629: <a href="fsharp-license.txt">許諾条件</a>を読んでください。
                   2630: <q>nono uses X68030 IPLROM image distributed without charge.
                   2631: You must read
                   2632: <a href="fsharp-license.txt">the license agreement</a>
                   2633: (even though it's Japanese original text only).</q>
1.1.1.15  root     2634: <li>
                   2635: nono は SIL Open Font License version 1.1 で配布されているフォントの
                   2636: 一部を改変して組み込んでいます。
                   2637: <q>nono modifies and embeds the font distributed as SIL Open Font License version 1.1.</q>
                   2638: </ul>
                   2639: </div>
1.1.1.2   root     2640: 
1.1.1.15  root     2641: </details>
                   2642: 
                   2643: <a name=""></a>
                   2644: <details open style="padding-top: 1em">
                   2645: <summary><span class=h5>10.2. 連絡先 <q>Contact us</q></span></summary><div class="main">
1.1.1.4   root     2646: バグ報告などは以下にお願いします。日本語でおk。
                   2647: <q>If you find any problems, please let me know.
                   2648: You may write in English.</q><br>
                   2649: <a href="https://github.com/isaki68k/nono-issue/issues"
                   2650: >https://github.com/isaki68k/nono-issue/issues</a>
                   2651: </div>
1.1.1.15  root     2652: </details>
1.1.1.4   root     2653: 
1.1.1.15  root     2654: <a name=""></a>
                   2655: <details open style="padding-top: 1em">
                   2656: <summary><span class=h5>10.3. パッチの提供について <q>About contributes</q></span></summary><div class="main">
1.1.1.2   root     2657: パッチを提供してくださる場合は以下に同意したものとします。
1.1.1.13  root     2658: <q>If you provide a patch to nono, we assume that you agree the following
1.1.1.12  root     2659: conditions:</q>
1.1.1.2   root     2660: <ul>
                   2661: <li>成果物が nono のライセンスに従って運用あるいは配布されること。
1.1.1.16  root     2662: <q>All your work will be operated or distributed under the nono license.</q>
1.1.1.2   root     2663: <li>ライセンスが将来変わる可能性があること。
                   2664: <q>The license may be changed in the future.</q>
                   2665: <li>著作部分に関して著作者人格権を行使しないこと。
                   2666: <q>Do not exercise your author's rights.</q>
                   2667: </ul>
                   2668: </div>
1.1.1.15  root     2669: </details>
1.1.1.2   root     2670: 
1.1.1.15  root     2671: <a name=""></a>
                   2672: <details open style="padding-top: 1em">
                   2673: <summary><span class=h5>10.4. Acknowledgements</span></summary><div class="main">
1.1.1.2   root     2674: nono は以下の広告条項を含むソースコードを利用しています。
                   2675: <q>nono uses source code with the following advertising clause.</q>
                   2676: <blockquote>
                   2677: This product includes software developed by Gordon Ross<br>
                   2678: This product includes software developed by the University of California, Lawrence Berkeley Laboratory.<br>
                   2679: </blockquote>
                   2680: </div>
1.1.1.15  root     2681: </details>
                   2682: </details>
1.1       root     2683: 
                   2684: <hr>
1.1.1.2   root     2685: nono project
1.1       root     2686: </body>
                   2687: </html>

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.