Annotation of nono/doc/changes.html, revision 1.1.1.16

1.1       root        1: <!--
                      2:  nono
                      3:  Copyright (C) 2020 nono project
                      4:  Licensed under nono-license.txt
                      5: -->
                      6: <html>
                      7: <head>
                      8: <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                      9: <title>nono document</title>
                     10: <style type="text/css">
                     11: /* https://jfly.uni-koeln.de/colorset/ */
                     12: 
                     13: :root {
                     14:        --blue:                 rgb(  0,  90, 255);
                     15:        --brown:                rgb(128,  64,   0);
                     16:        --green:                rgb(  3, 175, 122);
                     17:        --grey:                 rgb(132, 145, 158);
1.1.1.12  root       18:        --cream:                rgb(255, 255, 128);
                     19:        --yellow-green: rgb(216, 242,  85);
1.1.1.8   root       20:        --light-pink:   rgb(255, 202, 191);
1.1.1.12  root       21:        --light-green:  rgb(119, 217, 168);
1.1       root       22:        --light-grey:   rgb(200, 200, 203);
1.1.1.3   root       23: 
                     24:        --bg-grey:              rgb(220, 220, 223);
1.1       root       25: }
                     26: body {
1.1.1.3   root       27:        background-color: var(--bg-grey);
1.1       root       28: }
                     29: q {
                     30:        color: var(--brown);
                     31: }
                     32: q:before {
                     33:        content: "[";
                     34: }
                     35: q:after {
                     36:        content: "]";
                     37: }
                     38: dt.dt-indent {
                     39:        padding-left: 1ex;
                     40: }
1.1.1.14  root       41: .h4 {
                     42:        font-weight: bold;
                     43:        font-size: 110%;
                     44: }
                     45: .h5 {
                     46:        font-weight: bold;
                     47:        padding-left: 1ex;
                     48: }
1.1       root       49: .main {
1.1.1.14  root       50:        margin-left: 2em;
                     51: }
                     52: .main1 {
1.1       root       53:        margin-left: 1em;
                     54: }
                     55: .cons {
                     56:        background-color: black;
                     57:        color: white;
                     58: }
                     59: .file {
                     60:        background-color: white;
                     61:        color: black;
                     62: }
                     63: .strike {
                     64:        color: var(--grey);
                     65: }
1.1.1.4   root       66: .strike > q {
                     67:        color: var(--grey);
                     68: }
1.1.1.12  root       69: .new {
                     70:        background-color: var(--light-green);
                     71: }
                     72: .new > q {
                     73:        background-color: var(--light-green);
                     74: }
1.1       root       75: </style>
                     76: </head>
                     77: <body>
                     78: <h3>nono: changes</h3>
                     79: 
1.1.1.16! root       80: 灰色のは実験用か開発用のメモです。
        !            81: <q>Grey colored items are experimental or just a log for us developers.</q>
1.1       root       82: <hr>
1.1.1.14  root       83: <div class="main1">
1.1       root       84: <dl>
1.1.1.2   root       85: 
1.1.1.16! root       86: <dt>0.7.0 (2024-02-21)
        !            87: <dd><ul>
        !            88: <li>vm(New): virt68k をサポート開始。
        !            89:  <q>Start to support virt68k.</q>
        !            90: <li>vm(Fix): Nereid イーサネットボード2枚モードで
        !            91: 割り込みアクノリッジが正しく処理されないのを修正。
        !            92:  <q>Fix problem that the interrupt acknowledge didn't handle correctly
        !            93:  when two Nereid boards are installed simultaneously.</q>
        !            94: <li>vm(Fix): リセット時にいくつかのデバイスでスプリアス割り込みが起きる場合があったのを修正。
        !            95:  <q>Fix several spurious interrupts on resetting on various devices.</q>
        !            96: <li>vm(Fix): X68030 SCC の MIE を実装。
        !            97:  <q>Implement MIE on X68030 SCC.</q>
        !            98: <li>vm(Fix): X68030 MFP でタイマー開始時に TxDR を更新しないよう修正。
        !            99:  <q>Fix not to update TxDR on starting the timer on X68030 MFP.</q>
        !           100: <li>vm(Fix): X68030 CRTC のアクセスを色々改善。
        !           101:  <q>Fix several accesses to CRTC on X68030.</q>
        !           102: <li>vm(Update): バスアクセス全体を色々整理中。
        !           103:  デバイスのウェイトが意図的に、あるいは意図せず変わっているかも知れません。
        !           104:  <q>Fix and rearrange whole bus access.
        !           105:  Some device wait may be changed intentionally or unintentionally.</q>
        !           106: <li>vm(Update): 全機種の電源デバイスを整理。
        !           107:  <q>Rearrange the power devices on all architecture.</q>
        !           108: <li>app(New): 画面レンダリングを amd64 の AVX2 に対応。
        !           109:  <q>Graphic rendering now can use AVX2 on amd64.</q>
        !           110: <li>app(Update): -X は -H なしだと引数1つだけを受け取るように変更。
        !           111:  <q>-X option is changed to accept only one argument if -H is not specified.</q>
        !           112: <li>app(Update): 設定項目に exec-file, exec-arg を追加。
        !           113:  <q>Configuration item exec-file and exec-arg are added.</q>
        !           114: <li>app(Update): オプション --initrd と設定項目 exec-initrd を追加。
        !           115:  <q>--initrd option and configuration item exec-initrd are added.</q>
        !           116: <li>app(Update): 設定ファイル中のパスの '~' をホームディレクトリに置換する。
        !           117:  <q>Path beginning of '~' in the configuration file is replaced to the
        !           118:  home directory.</q>
        !           119: <li>app(Fix): -X が指定されても -Lhelp が表示できるよう修正。
        !           120:  <q>-Lhelp can be displayed even if -X is specified.</q>
        !           121: <li><span class=strike>debugger(Update): dt、mt コマンドを廃止。</span>
        !           122: </ul>
        !           123: <p>
        !           124: 
        !           125: <dt>0.6.4 (2023/12/28)
        !           126: <dd><ul>
        !           127: <li>vm(New): X68030 に Windrv 互換デバイスを実装。
        !           128: Human68k からホストのディレクトリが見えるようになります。
        !           129:  <q>Implement a Windrv compatible device on X68030.
        !           130:  You can access a host directory via the device on Human68k.</q>
        !           131: <li>vm(New): X68030 のコントラスト設定を実装。
        !           132:  <q>Implement a contrast feature on X68030.</q>
        !           133: <li>vm(Update): X68030 で SPC のキューが一杯で書き込みが待たされるのを実装。
        !           134: Human68k から SCSI メディアに書き込みが出来るようになります。
        !           135:  <q>Implement that writing to the SPC is made to wait if the internal
        !           136:  queue is full.  You can write a SCSI media on Human68k.</q>
        !           137: <li>vm(Update): X68030 DMAC からのアクセスに FC (ファンクションコード) を反映。
        !           138:  <q>DMAC now uses FC (Function Code) to access on X68030.</q>
        !           139: <li>vm(Update): JP キーボードモードでホストの [PageUp]、[PageDown]、[End]
        !           140:  キーを X68030 の [ROLL UP]、[ROLL DOWN]、[UNDO] キーに対応。
        !           141:  <q>Connect the host's [PageUp], [PageDown] and [End] key to guest's
        !           142:  [ROLL UP], [ROLL DOWN] and [UNDO] key respectively on X68030.
        !           143: <li>vm(Fix): X68030 で SCC、FDC、SPC、Nereid
        !           144: が正しくリセットされていなかったのを修正。
        !           145:  <q>Fix the problem that SCC, FDC, SPC and Nereid are not reset
        !           146:  correctly on X68030.</q>
        !           147: <li>vm(Fix): X68030 の CIIN 信号線の条件が誤っていたので修正。
        !           148:  <q>Fix a CIIN condition on X68030.</q>
        !           149: <li>vm(Fix): X68030 の $ED0000..$EDFFFF がユーザアクセス可能だったのを修正。
        !           150:  <q>Fix $ED0000..$EDFFFF was user-accessible on X68030.</q>
        !           151: <li>vm(Fix): X68030 マウスのデータ送出タイミングを調整。影響はないはず。
        !           152:  <q>Fix timing that mouse sends its data on X68030.
        !           153:  It should not affect anything.</q>
        !           154: <li><span class="new">m68k(Update): m68k コアのパフォーマンスを改善しました。
        !           155:  <q>Improve m68k core performance.</q></span>
        !           156: <li>GUI(New): メニューを再編して、
        !           157: 「デバイス &gt; 操作」の一部と旧「ファイル」を「VM」に統合。
        !           158:  <q>Rearrange menus.  A part of "Device &gt; Operation" and old "File"
        !           159:  menus are integrated into"VM".</q>
        !           160: <li>GUI(New): X68030 のメニューに「CTRL+OPT.1+DEL を送信」を追加。
        !           161:  <q>Add "Send CTRL+OPT.1+DEL" menu on X68030.</q>
        !           162: <li>GUI(Fix): 0.6.3 以降、
        !           163: ログレベル設定ウィンドウを開くと不正終了していたのを修正。
        !           164:  <q>Fix an abnormal termination when open the loglevel setting window
        !           165:  since 0.6.3.</q>
        !           166: <li>debugger(Fix): コマンドラインオプション -b の引数が16進数として処理できない場合に不正終了していたのを修正。
        !           167:  <q>Fix an abnormal termination when the argument of command line option
        !           168:  <tt>-b</tt> cannot be parsed as a hexadecimal number.</q>
        !           169: <li><span class="strike">debugger(New): --bi-exg オプションを実装。</span>
        !           170: </ul><p>
        !           171: 
        !           172: <dt>0.6.3 (2023/11/30)
        !           173: <dd><ul>
        !           174: <li>m68k(New): 命令キャッシュを実装。
        !           175:  X68030 IPL の MPU クロック表示が正しく表示されるようになります。
        !           176:  <q>Implement an instruction cache.
        !           177:  Finally X68030 IPL can display correct MPU clock speed.</q>
        !           178: <li>vm(New): X68030 のエリアセット、拡張エリアセットをたぶん実装。
        !           179:  <q>Implement areaset and extended areaset features on X68030.</q>
        !           180: <li>vm(New): X68030 の FC2 ピンを切断するオプションを実装。
        !           181:  <q>Implement an option whether to cut FC2 or not on X68030.</q>
        !           182: <li>vm(New): X68030 システムポートモニタを実装。
        !           183:  <q>Implement a system port monitor on X68030.</q>
        !           184: <li>vm(New): アクセス状況モニタを実装。
        !           185:  <q>Implement an access status monitor.</q>
        !           186: <li>vm(Update): LUNA-I で実機 PROM イメージを使う場合のメモリ上限を
        !           187: 255MB に制限する。
        !           188:  <q>Restrict memory size to 255MB when using PROM image on LUNA-I.</q>
        !           189: <li>vm(Update): LUNA-I, LUNA-88K のメモリ上限、
        !           190: X68030 の拡張メモリの上限を 512MB に変更。
        !           191:  <q>Change memory size limit to 512MB on LUNA-I, LUNA-88K and X68030.</q>
        !           192: <li>m68k(Fix): バスエラーハンドラ起動中のアドレスエラーが二重バスフォールトに
        !           193: ならなかったのを修正。
        !           194:  <q>Fix the problem that an address error while executing bus error handler
        !           195: does not cause double bus fault.</q>
        !           196: <li>vm(Fix): LUNA-88K の XP プロセッサの割り込みレベルを修正。Issue#131
        !           197:  <q>Correct interrupt levels from XP Processor on LUNA-88K.</q>
        !           198: <li>GUI(Fix): ビットマッププレーンモニタが 256色モードに対応していなかった
        !           199: のを修正。Issue#133
        !           200:  <q>Fix the problem that the bitmap plane monitor did not support
        !           201: 256-color mode.</q>
        !           202: <li>build(Fix): util/mkcgrom を OpenBSD でのビルドに対応。
        !           203:  <q>Make util/mkcgrom buildable on OpenBSD.</q>
        !           204: </ul>
        !           205: <p>
        !           206: 
        !           207: <dt>0.6.2 (2023/08/16)
        !           208: <dd><ul>
        !           209: <li>m88k(Fix): m88200 のアドレス変換がオフの場合でも暗黙 BATC を有効にする。
        !           210:  <q>Implement that hardwired BATCs are enable even if the address
        !           211:  translation is disabled on m88200.</q>
        !           212: <li>m88k(Update): m88200 の BATC/PATC サーチのパフォーマンスを改善。
        !           213:  <q>Improve m88200 BATC/PATC search performance.</q>
        !           214: <li>vm(Fix): リセット時に PEDEC の割り込みをクリアする。
        !           215:  <q>Negate PEDEC interrupts when resetting.</q>
        !           216: <li>vm(Update): Nereid、Lance のマルチキャストフィルタを実装。
        !           217:  <q>Implement multicast filter on Nereid and Lance.</q>
        !           218: <li>vm(Update): LUNA-I, LUNA-88K 内蔵 PROM のホストファイルの処理を再編。
        !           219:  <tt>--load-only</tt> オプションを廃止。
        !           220:  <q>Reorganize host file handling on LUNA-I/LUNA-88K internal PROM.
        !           221:  It obsoletes <tt>--load-only</tt> option.</q>
        !           222: <li>build(Update): wxWidgets を 3.2 → 3.0 の順で探すように変更。
        !           223:  <q>Search wxWidgets 3.2, 3.0 in order.</q>
        !           224: </ul>
        !           225: <p>
        !           226: 
        !           227: <dt>0.6.1 (2023/04/23)
        !           228: <dd><ul>
        !           229: <li>vm(Update): NWS-1750 の $e000'0000〜$efff'ffff
        !           230: のうちデバイスのない領域をバスエラーにしないよう変更。
        !           231: またそれに伴い、設定の <tt>xxx-news-sic-ignore</tt> を廃止。
        !           232:  <q>Change that access to the range from $e000'0000 to $efff'ffff
        !           233:  doesn't cause a bus error on NWS-1750.
        !           234:  Along with this, <tt>xxx-news-sic-ignore</tt> is obsoleted.</q>
        !           235: <li>vm(Update): NWS-1750 の PROM エミュレーションに
        !           236: TRAP#15 のダミーハンドラを実装。
        !           237:  <q>Implement dummy TRAP#15 handler on NWS-1750's PROM emulation.</q>
        !           238: <li>GUI(New): NEWS のデバイスマップモニタを実装。
        !           239:  <q>Implement NEWS' device map monitor.</q>
        !           240: <li>GUI(Fix): ver 0.6.0 で一部のモニタがメニューからなくなっていたのを修正。
        !           241:  <q>Fix problem that some monitors are not shown in menu since ver 0.6.0.</q>
        !           242: </ul>
        !           243: <p>
        !           244: 
        !           245: <dt>0.6.0 (2023/03/22)
1.1.1.15  root      246: <dd><ul>
                    247: <li>vm(New): Nereid 拡張ボードのバンクメモリとイーサネット(RTL8019AS)を実装。
                    248:  <q>Implement a bank memory and ethernet (RTL8019AS) of Nereid expansion
                    249:  board.</q>
                    250: <li>vm(Fix): X68030 で -X オプションで起動した時の割り込みレベルを修正。
                    251:  <q>Fix an interrupt level when -X option is used in X68030.</q>
                    252: <li>debugger(Update): 例外履歴を X68030 の IOCS コールに対応。
                    253:  <q>Support X68030 IOCS call in the exception history.</q>
                    254: </ul>
                    255: <p>
                    256: 
1.1.1.16! root      257: <dt>0.5.1 (2023/02/12)
1.1.1.15  root      258: <dd><ul>
                    259: <li>vm(Fix): X68030 拡張メモリがない領域がバスエラーにならないよう修正。
                    260:  <q>Fix a bus error in areas with no extended memory in X68030.</q>
                    261: <li>vm(Update): HD647180 の DAA 命令を実装。
                    262:  <q>Implement DAA instruction on HD647180.</q>
                    263: <li>debugger(Fix): HD647180 リセット状態中にセットしたブレークポイントが
                    264: 効かなかったのを修正。
                    265:  <q>Fix breakpoints set while HD647180 is in reset state not working.</q>
                    266: <li>GUI(New): デバイスマップモニタを実装。
                    267:  <q>Implement a device map monitor.</q>
                    268: <li>GUI(Update): DIPSW ウィンドウのスイッチをフォントサイズに連動させる。
                    269:  <q>Link control size with font size, on DIPSW window.</q>
                    270: <li>GUI(Fix): ビットマップモニタウィンドウを24ドットフォントに対応。
                    271:  <q>Support 24 dot fonts in a bitmap monitor window.</q>
                    272: <li>GUI(Fix): ビットマップモニタウィンドウをリサイズすると不正終了する
                    273: 場合があったのを修正。
                    274:  <q>Fix an abnormal termination when a bitmap monitor window is resized.</q>
                    275: </ul>
                    276: <p>
                    277: 
                    278: 
1.1.1.16! root      279: <dt>0.5.0 (2023/01/25)
1.1.1.14  root      280: <dd><ul>
                    281: <li>vm(New): HD647180 を実装開始。とりあえず動く程度。
                    282:  <q>Start to implement HD647180.</q>
                    283: <li>vm(New): X68030 拡張メモリを実装。
                    284:  <q>Implement X68030 extended memory.</q>
                    285: <li>vm(Fix): SPC の DREG バッファフルで書き込みを行うと不正終了していたのを修正。
                    286:  <q>Fix an abnormal termination on writing to DREG when buffer full in SPC.</q>
                    287: <li>m68k(Update): m68030 のパフォーマンスを改善。
                    288:  <q>Improve performance of m68030.</q>
                    289: <li>debugger(Fix): BS 入力に対応。
                    290:  <q>Fix BackSpace input.</q>
                    291: <li>GUI(Update): モニタメニューを再編。
                    292:  <q>Reorganize monitor menu.</q>
                    293: <li>GUI(Update): 設定で指定されたスケールとモニタ更新レートをメニューに追加。
                    294:  <q>Add mainview scale specified in configuration and monitor rate to menu.</q>
                    295: <li>GUI(Fix): メモリダンプウィンドウを24ドットフォントに対応。
                    296:  <q>Support 24 dot fonts in memory dump window.</q>
                    297: <li>app(New): --create-sram オプションを実装。
                    298:  <q>Implement --create-sram option.</q>
                    299: <li>app(New): 設定ファイル ~/.nono.cfg も読み込むようにする。
                    300:  <q>Support configuration file ~/.nono.cfg.</q>
                    301: <li>app(Update): 設定項目 <tt>fast-mode</tt>、<tt>monitor-fontsize</tt>、
                    302: <tt>mainview-scale</tt> を実装。
                    303: <li>app(Update): -Mmemdump に表示形式指定を実装。
                    304:  <q>Support display format specification in -Mmemdump.</q>
                    305: </ul>
                    306: <p>
                    307: 
1.1.1.16! root      308: <dt>0.4.4 (2022/10/27)
1.1.1.14  root      309: <dd><ul>
                    310: <li>vm(New): LUNA の 8bpp ボードに仮対応。
                    311:  <q>Support 8bpp board on LUNA provisionally.</q>
                    312: <li>vm(Fix): 設定項目 <tt>xxx-news-sci-ignore</tt> を <tt>xxx-news-sic-ignore</tt> に変更。
                    313:  <q>Change configuration item name from <tt>xxx-new-sci-ignore</tt> to
                    314:  <tt>xxx-new-sic-ignore</tt>.</q>
                    315: <li>vm(Fix): NWS-1750 の RAM が一部で配置されていなかったのを修正。
                    316:  <q>Fix a problem that RAM is not placed correctly.</q>
                    317: <li>vm(Fix): X68030 のパレットレジスタへのアクセスを修正。
                    318:  <q>Fix an access to X68030 palette registers.</q>
                    319: <li>m88k(Update): m88k コアのパフォーマンスを約 3% 改善。
                    320:  <q>Improve m88k core performance about 3%.</q>
                    321: <li>debugger(Fix): メモリブレークポイントが 0番地でも動作するよう修正。
                    322:  <q>Memory break point now works even on address 0.</q>
                    323: <li>host(Fix): ホストシリアルコンソールにペーストとかすると内部キューが
                    324: あふれていたのを修正。
                    325:  <q>Fix a queue overflow when many characters are pasted to the host
                    326:  serial console at a time.</q>
                    327: <li>GUI(New): メインウィンドウの表示倍率 x1.5, x2.0 を実装。
                    328:  <q>Implement x1.5 and x2.0 scale on the main window.</q>
                    329: <li>GUI(New): フォントサイズ 24 を追加。
                    330:  <q>Add fontsize 24.</q>
                    331: <li>GUI(New): 前面 LCD ウィンドウおよび LCD キャラクタモニタの大きさを
                    332: フォントサイズと連動させる。
                    333:  <q>Link the front LCD window size and LCD charactor monitor size
                    334:  to font size.</q>
                    335: <li>GUI(New): Bt454/458 モニタをビデオモニタから独立。
                    336:  <q>Split the Bt454/458 monitor from video monitor.</q>
                    337: <li>GUI(New): パレットモニタを実装。
                    338:  <q>Implement a palette monitor.</q>
                    339: <li>GUI(New): DIPSW 設定ウィンドウを実装。
                    340:  <q>Implement DIPSW setting window.</q>
                    341: <li>GUI(New): メモリの編集機能を実装。
                    342:  <q>Implement memory edit.</q>
                    343: <li>GUI(New): 逆アセンブラモニタを実装。
                    344:  <q>Implement disassemble monitor.</q>
                    345: <li>GUI(Update): メモリダンプモニタに表示形式の切り替えを実装。
                    346: MMU ディスクリプタの表示に対応。
                    347:  <q>Implement output format selector on the memory dump monitor,
                    348: and support MMU descriptor.</q>
                    349: <li>GUI(Update): メモリダンプモニタに1行移動ボタンを追加。
                    350:  <q>Implement one line up/down button on the memory dump monitor.</q>
                    351: <li>GUI(Update): メモリダンプモニタをマウスホイールに対応。
                    352:  <q>Support mouse wheel on the memory dump monitor.</q>
                    353: <li>GUI(Update): GTK コントロールは GTK パネルの上に置くように変更。
                    354: GTK 側のテーマ変更に対応するため。
                    355:  <q>Place a GTK control on the GTK panel correctly.</q>
                    356: <li>GUI(Update): デフォルトカタログを読み込まないように変更。
                    357:  一部のメッセージだけ(意図せず)翻訳された状態になるため。
                    358:  <q>Don't load the default catalog.
                    359:  Because it contains unintended translation.</q>
                    360: <li>build(New): wxWidgets-3.2 系でのビルドに対応。
                    361:  <q>Support wxWidgets 3.2 series.</q>
                    362: </ul>
                    363: <p>
                    364: 
1.1.1.16! root      365: <dt>0.4.3 (2022/08/27)
1.1.1.14  root      366: <dd><ul>
                    367: <li>m68k(Fix): PTESTR/PTESTW 命令のレベル0、レベル7 を実装。
                    368:  <q>Implement case level 0 and level 7 of PTESTR/PTESTW instructions.</q>
                    369: <li>m68k(Fix): TT0/1 レジスタの R/W ビットが指定された時の動作を修正。
                    370:  <q>Fix match behavior when R/W bit are set on TT0/1 registers.</q>
                    371: <li>m68k(Fix): ダブルバスフォールトでアプリケーションが応答出来なくなっていたのを修正。
                    372:  <q>Fix that an application becomes inoperable on double bus fault in VM.</q>
                    373: <li>m88k(Fix): 疑似 STOP の動作を改善。
                    374:  <q>Improve pseudo STOP behaviors.</q>
                    375: <li>vm(Update): LUNA-88K 内蔵 PROM の GETC/PUTC を(まじめに)実装。
                    376:  <q>Implement GETC/PUTC routines on LUNA-88K's internal PROM.</q>
                    377: <li>vm(New): NWS-1750 をサポートしてみるネタ。
                    378:  <q>Support NWS-1750.  It's just a joke.</q>
                    379: </ul>
                    380: <p>
                    381: 
1.1.1.16! root      382: <dt>0.4.2 (2022/08/03)
1.1.1.14  root      383: <dd><ul>
                    384: <li>vm(Update): LUNA-88K のメモリマップを実機に近づける。
                    385:  <q>Improve a memory map on LUNA-88K.</q>
                    386: <li>vm(Update): LUNA キーボードブザーの処理を改善。
                    387: ソフトウェアキーボードにインジケータを実装。
                    388:  <q>Improve a keyboard buzzer handling on LUNA.
                    389:  Implement the buzzer indicator on the software keyboard window.</q>
                    390: <li>vm(Update): LUNA-88K で PROM 1.20 使用時はメモリ上限を 240MB に制限する。
                    391: ROM コードの制約のため。
                    392:  <q>Limit maximum ram size to 240MB when using PROM 1.20 on LUNA-88K
                    393:  due to PROM code constraint.</q>
                    394: <li>vm(Update): TVRAM で水平スクロールが右にはみ出した時の挙動をたぶん実装。
                    395:  <q>Implement behaviors when TVRAM scroll protrudes to the right, probably.</q>
                    396: <li>vm(Fix): RFCNT の水平スクロール量を実機に合わせて修正。
                    397:  <q>Fix a horizontal scroll amount of RFCNT to match real machine.</q>
                    398: <li>m88k(Fix): m88200 キャッシュのライン無効化時のアドレスマスクを修正。
                    399:  <q>Fix an address mask when m88200 invalidates cache line.</q>
                    400: <li>m88k(Fix): 書き込みでキャッシュエントリ作成時のキャッシュステータスを修正。
                    401:  <q>Fix cache status when m88200 creates cache entry for writing.</q>
                    402: <li>debugger(Update): 例外履歴に非公式 NetBSD/luna88k のシステムコールを追加。
                    403:  <q>Add unofficial NetBSD/luna88k system call to the exception history.</q>
                    404: <li>app(Update): -X オプションで NetBSD カーネルのシンボル読み込みに対応。
                    405:  <q>-X option supports loading symbol tables in NetBSD kernel.</q>
                    406: <li>app(Fix): デバッガ使用時にアプリケーションが終了できない場合があったのを修正。
                    407:  <q>Fix a problem that application may not be able to be terminated
                    408:  when debugger is used.</q>
                    409: <li>app(Fix): Ctrl+Q でアプリケーションが終了してしまうのを修正。
                    410:  <q>Fix a silent termination when Ctrl+Q is entered.</q>
                    411: </ul>
                    412: <p>
                    413: 
1.1.1.16! root      414: <dt>0.4.1 (2022/07/24)
1.1.1.14  root      415: <dd><ul>
                    416: <li>vm(Fix): X68030 システムポートの電源オフ制御ポートに4回以上書き込んだ時に
                    417: 不正終了していたのを修正。
                    418:  <q>Fix a problem that writing power-off control on the system port 4 or more
                    419:  times causes an abnormal termination on X68030.</q>
                    420: <li>vm(Fix): CMMU のログ表示で不正終了していた問題を修正。
                    421:  <q>Fix an abnormal termination on CMMU log.</q>
                    422: <li>vm(Fix): LUNA の ROM エミュレーション使用時にメニューの
                    423: 「Press Power Button」で即電源が落ちるようになっていたのを修正。
                    424:  <q>Fix a problem that selecting "Press Power Button" menu when using
                    425:  LUNA ROM emulation causes a silent termination.</q>
                    426: <li>vm(Fix): LUNA-88K ROM エミュレーションで
                    427: キー入力によりハングアップする場合があったのを修正。
                    428:  <q>Fix a problem that may hang on keystrokes on LUNA-88K ROM emulation.</q>
                    429: <li>vm(Fix): LUNA でブザー発声中に再度ブザーコマンドが来ると
                    430: 高速モードに戻れなくなっていた問題を修正。
                    431:  <q>Fix a problem that the full speed mode is suppressed parmanently
                    432:  when buzzer command is issued again during buzzer execution on LUNA.</q>
                    433: <li>vm(Update): BT454 設定値とホストカラーとのマッピングを少し明るく調整。
                    434:  <q>Adjust color mappings between BT454 value and the host palette.</q>
                    435: <li>host(Fix): Ubuntu ホストで [_] キーが入力できなかったのを修正。
                    436:  <q>Fix a problem that [_] key does not work on Ubuntu.</q>
                    437: <li>host(Fix): [F11] キーの入力が出来ていなかったのを修正。
                    438:  <q>Fix a problem that [F11] key does not work.</q>
                    439: <li>GUI(Fix): サブウィンドウがメイン画面の中心にある時でも
                    440: マウスモードに入れるようにする。
                    441:  <q>Entering the mouse mode now works even that some subwindows are
                    442:  displayed on the center of the mainwindoiw.</q> (Issue#1)
                    443: <li>GUI(New): LUNA フレームバッファ/X68030 TVRAM モニタでピクセル情報を表示。
                    444:  <q>Display the pixel information on LUNA Framebuffer/X68030 TVRAM monitor.</q>
                    445: <li>app(Update): -X で NetBSD/x68k カーネルの起動に対応。
                    446:  <q>-X option supports booting NetBSD/x68k kernel.</q>
                    447: </ul></dd>
                    448: <p>
                    449: 
                    450: 
1.1.1.16! root      451: <dt>0.4.0 (2022/06/18)
1.1.1.13  root      452: <dd><ul>
                    453: <li>vm(New): X68030 FDC/FDD と 2HD/2HC フロッピーを実装。
                    454:  <q>Implement FDC/FDD on X68030 and 2HD/2HC floppies.</q>
                    455: <li>vm(New): X68030 OPM レジスタの BUSY を実装。
                    456:  <q>Implement a BUSY state on OPM Registers on X68030.</q>
                    457: <li>vm(New): X68030 DMAC をもう少し実装。
                    458:  <q>Implement DMAC more.</q>
                    459: <li>vm(New): X68030 ROM ファイルの外部イメージパスを指定できるようにする。
                    460:  <q>Support to specify external image path for X68030 ROM.</q>
                    461: <li>vm(New): X68030 ROM30 エミュレーションを実装。NetBSD/x68k が起動する程度で
                    462: Human68k は起動できない。
                    463:  <q>Implement X68030 ROM30 Emulation.
                    464:  It can boot NetBSD/x68k but not Human68k.</q>
                    465: <li>vm(New): X68030 CGROM 外部イメージに 6x12 フォントがない場合警告を出す。
                    466:  <q>Warn if an external CGROM image doesn't contain 6x12 font on X68030.</q>
                    467: <li>vm(New): X68030 電源 LED と電源オフを実装。
                    468:  <q>Implement power LED and power off on X68030.</q>
                    469: <li>vm(New): X68030 SRAM の RAM 容量欄を設定値と同期するオプションを実装。
                    470:  <q>Implement an option that synchronize RAM size field in SRAM and actual RAM size on X68030.</q>
                    471: <li>vm(New): X68030 キーボードモニタ、TVRAM モニタを実装。
                    472:  <q>Implement keyboard monitor and TVRAM monitor.</q>
                    473: <li>vm(Update): X68030 SRAM ファイル名を "SRAM.DAT" に変更。
                    474:  <q>Change SRAM filename to "SRAM.DAT".</q>
                    475: <li>vm(Update): X68030 FPU 設定項目名を fpu-type に変更。
                    476:  <q>Change configuration keyname of FPU to fpu-type.</q>
                    477: <li>vm(Update): X68030 CRTC モニタに一部のレジスタを追加。
                    478:  <q>Add some registers to CRTC monitor on X68030.</q>
                    479: <li>vm(Fix): X68030 TVRAM のラスターコピーのタイミングとアクセス先を修正。
                    480:  <q>Fix timing and destination address of TVRAM raster copy on X68030.</q>
                    481: <li>vm(Fix): X68030 SCC のレジスタアクセスを修正。
                    482:  <q>Fix register access on SCC on X68030.</q>
                    483: <li>vm(Fix): X68030 SCC でビットレートをチャンネルごとに設定できるよう修正。
                    484:  <q>Fix to allow SCC bit rate to be set for each channel on X68030.</q>
                    485: <li>vm(Fix): X68030 マウスボタンが左右逆だったのを修正。
                    486:  <q>Fix reversed mouse buttons.</q>
                    487: <li>vm(Fix): X68030 本体の SCSI ID を 7 固定に変更。
                    488:  <q>Change SCSI ID to be fixed to 7 on X68030.</q>
                    489: <li>vm(Update): 実時間の再同期を実装。
                    490:  <q>Implement resynchronizing time.</q>
                    491: <li>m68k(Fix): 割り込みチェックのタイミングを修正。
                    492:  <q>Fix timing that MPU checks interrupts.</q>
                    493: <li>GUI(New): LUNA フレームバッファ/X68030 TVRAM モニタに拡大機能を実装。
                    494:  <q>Implement zoom in feature for LUNA Frame buffer/X68030 TVRAM monitor.</q>
                    495: <li>GUI(Fix): LUNA フレームバッファ/X68030 TVRAM モニタの最大サイズを正しく設定。
                    496:  <q>Fix the maximum window size of LUNA Frame buffer/X68030 TVRAM monitor
                    497:  window.</q>
                    498: <li>GUI(Fix): ベクタモニタのサイズを広げると死ぬ場合があったのを修正。
                    499:  <q>Fix an abnormal termination on vector monitor.</q>
                    500: <li>GUI(Fix): 更新レートが低い場合にスクロールの描画も遅くなっていたのを修正。
                    501:  <q>Fix drawing when update rate is low.</q>
                    502: <li>debugger(Fix): ver 0.3.0 以降 m68k でステップ実行中にリセット例外が起きた場合の動作を修正。
                    503:  <q>Fix m68k step execution when a reset exception occurs since 0.3.0.</q>
                    504: <li>debugger(Fix): ver 0.3.0 以降 m88k でステップ実行した時の命令位置を修正。
                    505:  <q>Fix m88k instruction pointer on step execution since 0.3.0</q>
                    506: <li>debugger(Update): ct コマンドを実装。
                    507:  <q>Implement a ct command.</q>
                    508: <li>app(Fix): ver 0.2.6 以降アプリケーションが終了できない場合があったのを修正。
                    509:  <q>Fix a problem that application may not be able to be terminated since
                    510:  0.2.6</q>
                    511: <li>app(Fix): マウスキャプチャが外れた場合に不正終了する場合があったのを修正。
                    512:  <q>Fix an abnormal termination when mouse capture is released.</q>
                    513: </ul></dd>
                    514: <p>
                    515: 
                    516: 
1.1.1.12  root      517: <dt>0.3.0 (2022/04/30)
                    518: <dd><ul>
                    519: <li>m88k(Update): m88200 のパフォーマンスを改善。
                    520:  <q>Improve performance of m88200.</q>
                    521: <li>m88k(New): m88200 の M バススヌープを実装。
                    522:  <q>Implement M bus snooping of m88200.</q>
                    523: <li>m88k(Fix): BATC の一部のフラグが動作に反映されていなかった問題を修正。
                    524:  <q>Fix a problem that some BATC flags were not reflected.</q>
                    525: <li>m68k(Fix): 割り込みタイミングを調整。
                    526:  <q>Adjust minor interrupt timings.</q>
                    527: <li>m68k(Fix): リセット例外でフェッチした PC が奇数アドレスなら
                    528: ダブルバスフォールトにするところを実装 (ただし通常は起きない)。
                    529:  <q>Implement double bus fault, which occurs when a reset exception fetches
                    530:  odd address PC. (However, it does not usually occur)</q>
                    531: <li>vm(Update): VM スケジューラと CPU 駆動方法を全面改装。
                    532:  <q>Rewrite VM scheduler and how to drive CPU completely.</q>
                    533: <li>vm(Update): VM 再起動で仮想時間をリセットする。
                    534:  <q>Reset virtual time when VM is reset.</q>
                    535: <li>vm(New): FDC と OPM を少し実装。
                    536: NetBSD/x68k カーネルが fdc プローブを通過できるのと
                    537: HD 起動の Human68k が起動できる程度。
                    538:  <q>Implement FDC and OPM a bit.
                    539:  Now NetBSD/x68k kernel can pass probing fdc, and
                    540:  Human68k can be booted from HD.</q>
                    541: <li>vm(New): SPC の DMA 転送を実装。NetBSD/x68k の CD 起動が可能。
                    542:  <q>Implement DMA transfer to/from SPC.
                    543:  Now NetBSD/x68k can be booted from CD.</q>
                    544: <li>vm(New): TVRAM のアクセスマスクを実装。
                    545:  <q>Implement an access mask of TVRAM.</q>
                    546: <li>vm(Fix): ver 0.2.6 以降動作してなかったフレームバッファ(テキスト画面)
                    547: の横スクロールを復活。
                    548:  <q>Revive horizontal scroll of frame buffer (text screen)
                    549: which is not worked since ver 0.2.6.</q>
                    550: <li>debugger(Fix): トレース表示でレジスタ値が更新されるよう修正。
                    551:  <q>Fix a problem that register values are not updated if trace modifier
                    552:  is specified.</q>
                    553: <li>host(Fix): libkqueue ではディスクリプタクローズで kevent が削除されない
                    554: 問題に対応。
                    555:  <q>Address a problem that libkqueue does not automatically remove closed
                    556:  descriptors from kevent.</q>
                    557: <li>build(New): configure に --without-gui オプションを用意。
                    558:  <q>configure now supports --without-gui option.</q>
                    559: <li><span class=strike>debugger(Update): コンソールを HostCOM 機構に変更。
                    560:  <q>Change debugger console to HostCOM feature.</q></span>
                    561: <li><span class=strike>vm(Update): --force-rtc-fixed オプションを廃止、--perf オプションを追加。
                    562:  <q>Remove --force-rtc-fixed option and add --perf option for developpers.</q>
                    563:  </span>
                    564: </ul></dd>
                    565: <p>
                    566: 
                    567: 
                    568: <dt>0.2.6 (2022/02/15)
                    569: <dd><ul>
                    570: <li>m88k(Update): m88k コアのパフォーマンスを少し改善。
                    571:  <q>Improve the performance of m88k core slightly.</q>
                    572: <li>m68k(Fix): 68881 FCMP 命令の結果が正しくない場合があったのを動作を修正。
                    573:  <q>Fix 68881's FCMP instruction that may return wrong result.</q>
                    574: <li>vm(Update): レンダラをいろいろ改良、パフォーマンスを向上。
                    575:  <q>Improve the renderer including performance.</q>
                    576: <li>vm(Fix): SCSI イメージパスに絶対パスが書けなかった問題を修正。
                    577:  <q>Fix a problem that the absolute path for SCSI images could not be specified.</q>
                    578: <li>vm(Fix): SCSI ディスクの最終セクタのアクセスがエラーになっていたのを修正。
                    579:  <q>Fix a problem that accessing the last sector causes an error.</q>
                    580: <li>GUI(New): ベクタテーブルモニタを実装。
                    581:  <q>Implement a vector table monitor.</q>
                    582: <li>GUI(New): ログレベル設定ウィンドウを実装。
                    583:  <q>Implement a log level setting window.</q>
                    584: <li>GUI(Update): 各種ウィンドウの描画パフォーマンスを向上。
                    585:  <q>Improve performance of window drawing.</q>
                    586: <li>GUI(Fix): ビットマップモニタウィンドウの上部コントロールが塗りつぶされる問題を修正。
                    587:  <q>Fix a rendering problem of the control area on the bitmap plane window.</q>
                    588: <li>GUI(Fix): フォントサイズを変更するとビットマップモニタウィンドウが小さくなる問題を修正。
                    589:  <q>Fix a resize problem on the bitmap plane window.</q>
                    590: <li>app(Fix): シグナルの処理をいろいろ修正。
                    591:  <q>Fix several UNIX signal handling.</q>
                    592: <li>app(Fix): プロセス起動時に不正終了する場合があったのを修正。
                    593:  <q>Fix some abnormal terminations at the beginning of the process.</q>
                    594: <li>app(Fix): プロセス終了時に不正終了する場合があったのを修正。
                    595:  <q>Fix some abnormal terminations at the end of the process.</q>
                    596: <li><span class="strike">app(Fix): スレッド名が正しくないところを修正 (開発用)
                    597:  <q>Fix some thread names for development.</q></span>
                    598: <li><span class="strike">vm(Update): CRTC の水平同期信号を適当実装。
                    599: テキスト VRAM のラスターコピーを適当実装。
                    600:  <q>Implement the horizontal synchronizing signal on CRTC in progress.
                    601:  Implement the raster copy on the text VRAM in progress.</q></span>
                    602: </ul></dd>
                    603: <p>
                    604: 
                    605: <dt>0.2.5 (2021/12/30)
                    606: <dd><ul>
                    607: <li>vm(New): 4bpp プレーンに対応中。
                    608:  <q>Supporting 4bpp video plane.</q>
                    609: <li>vm(Fix): Lance(AM7990) でジャンボパケット送受信時のエラー処理を改善。
                    610:  <q>Fix error handlings of sending and receiving jumbo pakcets
                    611:  on Lance(AM7990).</q>
                    612: <li>vm(Fix): Lance(AM7990) の BSWP 処理を修正。
                    613: 4.4BSD ゲストが動くように。
                    614:  <q>Fix a BSWP operation on Lance(AM7990).  This makes 4.4BSD work.</q>
                    615: <li>vm(Fix): RTC(MK48T02) の基準年を設定可能にする。
                    616: 4.4BSD ゲストに対応するため。
                    617:  <q>Make RTC(MK48T02) epoch year configurable in order to support 4.4BSD.</q>
                    618: <li>vm(Fix): LUNA-88K の FUSEROM チェックバイトを実装。(Issue#99)
                    619:  <q>Implement a check byte in FUSEROM on LUNA-88K.</q>
                    620: <li>vm(Update): ROM エミュレーションで a.out の MID チェックを廃止。
                    621:  <q>The ROM emulation becomes not to verify a.out MID to boot.</q>
                    622: <li>vm(Update): LUNA-I ROM エミュレーションでも
                    623: ^C で ROM に戻れるようにする。(Issue#95)
                    624:  <q>LUNA-I ROM Emulation accepts ^C to back to the ROM.</q>
                    625: <li>GUI(Update): ウィンドウ全体の描画性能を改善。
                    626: メインウィンドウの(拡大)縮小も自前で実装。
                    627:  <q>Improve whole window drawing scheme, and implement
                    628:  main window's reduction.</q>
                    629: <li>GUI(Fix): ウィンドウサイズがいろいろおかしかったのをたぶん修正。(Issue#77)
                    630:  <q>Fix many window size problems.</q>
                    631: <li>GUI(New): テキストウィンドウにコンテキストメニュー「コピー」を実装。
                    632:  <q>Implement "Copy" context menu on text windows.</q>
                    633: <li>Host(New): Linux でインタフェースの GRO が有効ならエラーにする。
                    634:  <q>Reject network interface GRO on Linux host.</q>
                    635: <li>Host(Fix): Linux でコアダンプが出力できるようにする。
                    636:  <q>Now it can dump a core even on Linux.</q>
                    637: </ul></dd>
                    638: <p>
                    639: 
                    640: <dt>0.2.4 (2021/11/22)
                    641: <dd><ul>
                    642: <li>Host(New): シリアルコンソールの stdio, tcp ホストドライバをサポート。
                    643:  <q>Support serial console host driver for stdio, tcp.</q>
                    644: <li>vm(New): キーボードの接続、取り外しをサポート。
                    645:  <q>Support keyboard connection/disconnection.</q>
                    646: <li>vm(New): ABORT ボタンを実装。
                    647:  <q>Implement an ABORT button.</q>
                    648: <li>vm(New): LUNA-88K ROM エミュレーションの PROM PUTCHAR(?) ルーチンに対応。
                    649:  <q>Supports PROM PUTCHAR(?) routine on LUNA-88K ROM emulation.</q>
                    650: <li>vm(Update): SIO(uPD7201), SCC(Z8530) を書き直して改良。
                    651:  <q>Rewrite and improve SIO(uPD7201) and SCC(Z8530).</q>
                    652: <li>vm(Update): MK48T02 NVRAM は全域を保存する。
                    653:  <q>MK48T02 now saves the whole NVRAM.</q>
                    654: <li>vm(Update): LUNA ROM エミュレーションでテンキーの入力も受け付ける。
                    655:  <q>LUNA ROM emulation accepts numpad keys as well as the real machine.</q>
                    656: <li>vm(Fix): MK48T02 のレジスタ読み出し値の ver 0.2.3 でのエンバグを修正。
                    657:  <q>Fix an MK48T02 degradation since ver 0.2.3 </q>
                    658: <li>vm(Fix): Lance(AM7990) で受信パケットが失われる場合があったのを修正。
                    659:  <q>Fix an issue that Lance(AM7990) may lose packets it received.</q>
                    660: <li>vm(Fix): Lance(AM7990) の CSR0 レジスタ INIT/STRT ビットの動作を修正。
                    661:  <q>Fix INIT/STRT bit behavior in CSR0 on Lance(AM7990).</q>
                    662: <li>m68k(Fix): FSAVE -(An) 命令を修正。
                    663:  <q>Fix an FSAVE -(An) instruction.</q>
                    664: <li>m88k(Fix): Data Access Exception 発生時の DMx レジスタの内容を修正。
                    665:  <q>Fix DMx registers when Data Access Exception occurs.</q>
                    666: <li>GUI(Fix): 例外履歴モニタの表示方向を修正。
                    667:  <q>Fix sort direction on the exception history monitor.</q>
                    668: <li>GUI(Fix): ver 0.2.2 以降アクセラレータキーが効かなくなっていたのを修正。
                    669:  <q>Fix accelaration keys not working since ver 0.2.2.</q>
                    670: <li>app(Update): -V オプションのキー名が正しくなければエラーにする、
                    671: また設定ファイルのキー名が正しくなければ警告を出すように変更。
                    672:  <q>Make an error if keyname of -V option is not correct.
                    673:  Make a warning if keyname in the configuration file is not correct.</q>
                    674: <li>build(Fix): clang11 でのビルド対応。
                    675:  <q>Fix build with clang11.</q>
                    676: <li><span class=strike>vm(New): --force-rtc-fixed オプションを追加。開発用。
                    677:  <q>Add --force-rtc-fixed option for developpers.</q></strike>
                    678: </dl></dd>
                    679: <p>
                    680: 
1.1.1.11  root      681: <dt>0.2.3 (2021/10/03)
                    682: <dd><ul>
                    683: <li>m88k(Fix): INT、NINT、TRNC、FCMP、FLDCR、FSTCR、FXCR 命令の動作を改善。
                    684: 浮動小数点例外を実装。
                    685:  たぶん gcc が動くように。
                    686:  <q>Improve several floating point instructions and floating point exceptions.
                    687:  This may make gcc work.</q>
                    688: <li>vm(Update): uPD7201 (SIO) の Error Reset コマンドを実装。(Issue#65)
                    689:  <q>Implement the Error Reset command on uPD7201 (SIO).</q>
                    690: <li>vm(Update): LUNA キーボードコマンドを実装。
                    691:  <q>Implement all commands on LUNA keyboard.</a>
                    692: <li>vm(Fix): エミュレーション ROM 起動時にもキーボードコマンドを送信。
                    693:  <q>Emulated ROM now sends the keyboard commands on boot, as the real ROM
                    694:  does. </q>
                    695: <li>vm(Fix): LUNA の LED キー押下開放時の動作を修正。(Issue#83)
                    696:  <q>Fix the behaviors of LUNA LED key when it is pressed/released.</q>
                    697: <li>vm(Update): MK48T02 のレジスタ読み出しマスクを修正。(Issue#75)
                    698:  <q>Improve a read mask on MK48T02.</a>
                    699: <li>GUI(Update): ソフトウェアキーボードの CTRL、SHIFT キーの動作を変更。
                    700:  <q>Change CTRL, SHIFT key behavior on the software keyboard window.</q>
                    701: <li>app(Update): -X オプションが DIPSW に影響受けないように変更。
                    702:  <q>-X option is no longer affected by DIPSW.</q>
                    703: </ul></dd>
                    704: <p>
                    705: 
1.1.1.10  root      706: <dt>0.2.2 (2021/09/09)
                    707: <dd><ul>
1.1.1.11  root      708: <li>host(New): キー入力にキャラクタ入力モードを実装。(Issue#64)
1.1.1.10  root      709:  <q>Implement character input mode for keyboard input.</q>
                    710: <li>m88k(Fix): FLT 命令の動作を修正。
                    711:  <q>Fix a bug of FLT instruction.</q>
1.1.1.12  root      712: <li>vm(Fix): ver 0.2.0 以降 LUNA-88K の PROM エミュレーションが
1.1.1.10  root      713:        いろいろおかしかったのを修正。
1.1.1.12  root      714:  <q>Fix a few bugs in LUNA-88K PROM emulation since ver 0.2.0.</q>
1.1.1.10  root      715: <li>host(Update): ディスクイメージのアクセスを mmap(2) から read(2)/write(2)
1.1.1.11  root      716:        に変更。(Issue#60)
1.1.1.10  root      717:  <q>Change to use read(2)/write(2) instead of mmap(2) to access disk images.</q>
                    718: </ul></dd>
                    719: <p>
                    720: 
1.1.1.9   root      721: <dt>0.2.1 (2021/08/18)
                    722: <dd><ul>
1.1.1.11  root      723: <li>vm(New): SCSI CD と MO をサポート。(Issue#63)
1.1.1.9   root      724:  <q>Support SCSI CD and MO.</q>
                    725: <li>vm(Update): SCSI エミュレーションをいろいろ改善。
                    726:        ModeSelect(10)、ModeSense(10) コマンドを実装、
                    727:        SynchronizeCache コマンドを空で実装、
                    728:        StartStopUnit コマンドの LoEj(Load/Eject) ビットに対応、
                    729:        ModeSense コマンドのページ 04, 05, 08 をサポート。
                    730:        RequestSense コマンドのパラメータを修正。
                    731:  <q>Improve various things about SCSI emulation:
                    732:        Implement ModeSelect(10), ModeSense(10) command.
                    733:        Implement SynchronizeCache command as no-op.
                    734:        Support LoEj(Load/Eject) bit of StartStopUnit command.
                    735:        Support ModePage 04, 05 and 08 of ModeSense command.
                    736:        Fix RequestSense command parameters.</q>
                    737: <li>vm(Fix): 指定のアロケーション長で SCSI 転送を打ち切れるよう修正。
                    738:  <q>SCSI devices can terminate the SCSI transfer correctly
                    739:  at the specified allocation length.</q>
                    740: <li>vm(Fix): SCSI 転送速度制限(1MB/s)を実装。
                    741:  <q>Implement SCSI transfer speed limit.</q>
1.1.1.12  root      742: <li>vm(Fix): LUNA-88K PIO で DIPSW のビット配置を修正。(Issue#67)
                    743:  <q>Fix DIPSW pin placement in PIO on LUNA-88K.</q>
                    744: <li>vm(Fix): LUNA-88K システムコントローラのリセット動作を修正。
                    745:  <q>Fix a reset operation of LUNA-88K system controller.</q>
1.1.1.9   root      746: <li>vm(Update): RTC (MK48T02、RP5C15) エミュレーションを改善。
                    747:  <q>Improve RTC (MK48T02, RP5C15) emulations.</q>
1.1.1.11  root      748: <li>vm(Update): LCD エミュレーションを改善。(Issue#66)
1.1.1.9   root      749:  <q>Improve LCD emulation.</q>
                    750: <li>vm(Update): LUNA のマウス移動量が±1の時の動作を改善。
                    751:  <q>Improve LUNA mouse behavior when its movement amount is plus or minus 1.</q>
                    752: <li>m88k(Fix): add/sub 命令でオーバーフロー例外発生時の動作を修正。
                    753:  <q>Fix add/sub instruction behavior when it occurs overflow exception.</q>
                    754: <li>m88k(Fix): ジャンプ命令がジャンプ先アドレスをマスクしていなかったバグを修正。
                    755:  <q>Fix jump instructions' bug which doesn't mask the destination address.</q>
1.1.1.11  root      756: <li>app(Fix): ver 0.2.0 以降、特定の環境(Xsixel?)で起動時に VM 電源オンにならない問題を修正。(Issue#72)
1.1.1.9   root      757:  <q>Fix a bug that could not poweron on start under certain environment
                    758:  (Xsixel?) after ver 0.2.0.</q>
                    759: <li>app(Update): ステータスパネル SCSI インジケータで
                    760: イメージファイルパスをツールチップ表示。
                    761:  <q>Display filepath as a tooltip in SCSI indicators on the status panel.</q>
                    762: <li>app(Update): -A オプションを -X オプションに変更(移動)。
                    763:  <q>Change(rename) -A option to -X option.</q>
                    764: <li><span class=strike>app(Update): -X オプションを -H オプションに移動。
                    765:  <q>Change(rename) -X option to -H option.</q></span>
                    766: <li><span class=strike>m88k(New): デバッグ用ニーモニックを追加。
                    767:  <q>Implement an alternate mnemonic just for us.</q></span>
                    768: <li><span class=strike>m88k(Update): エミュレーション ROM で
                    769: UniOS-Mach の a.out ファイルをロードできるようにする。
                    770:  <q>Emulated ROM can boot UniOS-Mach a.out executable.</q></span>
                    771: <li><span class=strike>vm(New): X68k マウスを SCC に接続途中。
                    772:  <q>Trying to connect a mouse to SCC on X68k.</q></span>
                    773: </ul></dd>
                    774: <p>
                    775: 
1.1.1.8   root      776: <dt>0.2.0 (2021/06/20)
                    777: <dd><ul>
1.1.1.12  root      778: <li>vm(New): LUNA-88K の NVRAM をサポート。
                    779:  <q>Support LUNA-88K's NVRAM.</q>
                    780: <li>vm(New): LUNA-88K の内蔵 ROM コンソールに nvram コマンドを実装。
                    781:  <q>Support nvram command on LUNA-88K's emulated ROM console.</q>
1.1.1.8   root      782: <li>vm(Fix): ホストが受信したパケットの処理をいろいろ改善。
                    783:  <q>Various fixes for network packets received at the host.</q>
1.1.1.12  root      784: <li>vm(New): LUNA-I/LUNA-88K のシステムクロックに実時間同期モードをサポート
1.1.1.8   root      785:  (実験中)。
1.1.1.12  root      786:  <q>Support real-time synchronization mode on LUNA-I/LUNA-88K's system clock
1.1.1.8   root      787:  (experimental).</q>
                    788: <li>m88k(New): 疑似 STOP 状態をサポート。
                    789:  <q>Support pseudo stop status for m88k.</q>
                    790: <li>host(Update): ネットワークドライバあたりをいろいろ改善。
                    791: ホストがサポートしているものから実行時に選択する方式に変更。
                    792: そのため設定ファイル項目も変更。
                    793:  <q>Various changes on the host network drivers.</q>
                    794: <li>host(New): ホストネットワークドライバ AF_PACKET をサポート。
                    795:  <q>Add AF_PACKET as host network driver.</q>
                    796: <li>GUI(Update): ステータスパネルの表記を改善、LAN インジケータを追加、
                    797: HD にライトプロテクト状態を表示など。
                    798:  <q>Improve the status panel, including adding a LAN indicator,
                    799:  displaying write-protect icon on HD.</q>
                    800: <li>GUI(Update): メモリダンプモニタを4枚に増加。
                    801:  <q>Increase the number of memory dump windows to four.</q>
                    802: <li>GUI(Fix): サブウィンドウが正しいサイズで表示されない場合があったのを修正。
                    803:  <q>Fix window size problem under certain environment(?).</q>
                    804: <li>GUI(Fix): モニタとサブウィンドウあたりをいろいろ改善。
                    805:  <q>Fix/Improve various monitors and subwindows behaviors.</q>
                    806: <li>app(Update): -L, -M オプションをいろいろ改善。
                    807:  <q>Fix/Improve about -L and -M options.</q>
                    808: <li>debugger(Fix): m68k で TT のみが有効だとアドレスが表示できない場合があったのを修正。
                    809: <li><span class=strike>vm(New): -A オプションで ELF オブジェクトファイルのロードをサポート。
                    810:  <q>Support loading ELF object file on -A option.</q></span>
                    811: <li><span class=strike>vm(New): X68k キーボードのキーリピートを実装。
                    812:  <q>Implement key repeat feature on X68k keyboard.</q></span>
                    813: </ul></dd>
                    814: <br>
                    815: 
1.1.1.7   root      816: <dt>0.1.6 (2021/04/18)
                    817: <dd><ul>
                    818: <li>vm (Update): スケジューラをいろいろ改善。
                    819:  <q>Improve the scheduler.</q>
                    820: <li>vm (Update): キー入力をいろいろ改善。
                    821: キー入力をバッファリングする、
                    822: LUNA でのチャタリング抑制のためキー入力中は高速モードを抑制する、
                    823: キーコードは物理キーコードでなく論理キーコードを使うように変更、
                    824: その他バグ修正など。
                    825:  <q>Improve the key input:
                    826:  Buffer the keystrokes from the host.
                    827:  Suppress the full speed mode while any keys are pressed
                    828:  in order to prevent chattering on LUNA.
                    829:  Use the logical keycode instead of the phisical keycode.
                    830:  And several bugfixes.
                    831: <li>vm (Update): m68k, m88k のリセット例外を正しく実装。
                    832:  <q>Improve the reset exception of m68k, m88k.</q>
1.1.1.12  root      833: <li>vm (Fix): LUNA-88K のバスエラー領域を実装。PROM 1.20 が起動できる。
                    834:  <q>Implement the bus error area correctly on LUNA-88K.
1.1.1.7   root      835:  This makes PROM 1.20 work.</q>
                    836: <li>GUI (New): ステータスパネルを実装。
                    837:  <q>Implement a status panel.</q>
                    838: <li>GUI (Update): ソフトウェアキーボードを改修。
                    839: ソフトウェアキーボードウィンドウでもキー入力を受け付ける。
                    840: また現在のキー入力状態を反映して表示する。
                    841:  <q>Modify the software keyboard window.
                    842:  Accept keystrokes in this window as well.
                    843:  Also, the window displays the current keystroke status.</q>
                    844: <li>GUI (Fix): ウィンドウマネージャによっては(?)
                    845: ウィンドウが正しいサイズで表示されなかったのを修正。
                    846:  <q>Fix window size problem under certain window managers(?).</q>
                    847: <li>GUI (Fix): ログウィンドウをいろいろ修正。
                    848:  <q>Fix several problems on the log window.</q>
                    849: <li>debugger (Fix): m88k ニーモニックをちょっと修正。
                    850:  <q>Fix a few m88k mnemonics.</q>
                    851: </ul></dd>
                    852: <br>
                    853: 
1.1.1.6   root      854: <dt>0.1.5 (2020/12/05)
                    855: <dd><ul>
                    856: <li>vm (Update): m88k コアのパフォーマンスを改善。
                    857:  <q>Improve m88k performance.</q>
1.1.1.12  root      858: <li>vm (New): LUNA-88K に ROM エミュレーションを実装。とりあえず起動できる程度。
                    859:  <q>Implement emulated ROM for LUNA-88K.  For now, it only can boot.</q>
1.1.1.6   root      860: <li>vm (New): RAM 容量の変更をサポート。
                    861:  <q>Make the RAM size changable.</q>
                    862: <li>host (Update): OpenBSD の tap(4) に対応。
                    863:  <q>Support OpenBSD's tap(4).
                    864: <li>vm (Fix): LUNA-I の ROM エミュレーションが 0.0.3 および 0.1.4 以降
                    865:  いろいろおかしかったのを修正。
                    866:  <q>Fix several bugs on LUNA-I's emulated ROM since 0.0.3 and 0.1.4.</q>
                    867: <li>vm (Update): ROM エミュレーションの UFS 読み込み処理を改善。
                    868:  <q>Improve reading UFS on emulated ROM.
                    869: <li>vm (Fix): SIO(uPD7201) の受信キューが壊れるケースがあったのを修正。
                    870:  <q>Fix a bug that might break receive queue on SIO(uPD7201).</q>
                    871: <li>vm (Fix): SCSI 転送中に VM リセットすると不正終了していたのを修正。
                    872:  <q>Fix abnormal termination on resetting VM during SCSI transfer.</q>
                    873: <li>vm (Update): SPC の SCMD Intercept ビットのログを改善。
                    874:  <q>Improve a log message about SCMD Intercept bit on SPC.</q>
                    875: <li>app (Update): -c オプションに設定ファイル名も指定できるよう変更。
                    876:  <q>Make -c option acceptable configuration filename.</q>
                    877: </ul></dd>
                    878: <p>
                    879: 
1.1.1.5   root      880: <dt>0.1.4 (2020/11/20)
                    881: <dd><ul>
                    882: <li>vm (Fix): SCSI HD に WRITE(10) コマンドを実装。
                    883:  <q>Implement WRITE(10) command on SCSI HD.</q>
                    884: <li>vm (Fix): m88k の xmem.bu 命令のバグを修正。
                    885:  <q>Fix a bug on m88k xmem.bu instruction.</q>
                    886: <li>vm (Fix): m68k の STOP 命令や m88k の疑似 STOP
                    887:  状態で仮想時間がおかしくなる場合があるバグを修正。
                    888:  <q>Fix a bug that STOP instruction on m68k or pseudo STOP state on m88k
                    889:  may break virtual time.</q>
                    890: <li>vm (Fix): 0.1.3 以降 LUNA-I のエミュレーション ROM がキー入力を
                    891:  受け付けなくなっていたのを修正。
                    892:  <q>Fix a bug that LUNA-I emulated ROM does not accept any key inputs
                    893:  since 0.1.3.</q>
                    894: </ul></dd>
                    895: <p>
                    896: 
1.1.1.4   root      897: <dt>0.1.3 (2020/11/18)
                    898: <dd><ul>
                    899: <li>vm (Fix): m88k DAE エミュレーションを改善。
                    900:  <q>Improve DAE emulation on m88k.</q>
                    901: <li>vm (Fix): m88k ストア命令のバグを修正。
                    902:  <q>Fix a bug on m88k store instructions.</q>
                    903: <li>vm (Update): m88k の浮動小数点命令を実装中。
                    904:  <q>Implement floating point instructions.</q>
1.1.1.12  root      905: <li>vm (Fix): LUNA-88K の RAM が正しくアクセスできてなかったのを修正。
                    906:  <q>Fix incorrect RAM device assignment on LUNA-88K.</q>
                    907: <li>vm (Fix): LUNA-88K のシステムクロックデバイスが正しくアクセスできてなかったのを修正。
                    908:  <q>Fix accessing to the system clock device on LUNA-88K.</q>
1.1.1.4   root      909: <li>vm (Fix): uPD7201 (SIO) モニタの表示をいろいろ修正。
                    910:  <q>Various fixes on uPD7201 (SIO) monitor.</q>
                    911: <li>vm (Update): 割り込み周り全般を書き直し。
                    912:  <q>Rewrite and update whole around interrupt system.</q>
                    913: <li>vm (Update): SPC の SCMD Intercept ビットの動作を改善。
                    914:  <q>Improve SCMD's Intercept bit behavior on SPC.</q>
                    915: <li>debugger (Update): d,m コマンドなどメモリアクセス周りを改善。
                    916:  <q>Improve about memory access including d,m commands.</q>
                    917: <li>debugger (Update): 履歴のブランチ元に Supervisor/User 区分の表示を追加。
                    918:  <q>Show the Supervisor/User distinction of branch source address in
                    919:  branch windows.</q>
                    920: <li><span class=strike>vm (Update): X68k にダミーの OPM デバイスを用意。
                    921:  <q>Assign (currently no-op) OPM device on X68k.</q></span>
                    922: <li><span class=strike>vm (Update): MFP のタイマーの実装を改善中。
                    923:  <q>Improve MFP timer on X68k.</q></span>
                    924: </ul></dd>
                    925: <p>
                    926: 
1.1.1.3   root      927: <dt>0.1.2 (2020/10/28)
                    928: <dd><ul>
                    929: <li>build (Update): gcc5.5 以下はサポート外と明記。
                    930: <q>Mention explicitly that it does not support gcc5.5 or below.</q>
                    931: <li>vm (New): メモリとデバイスのアクセスウェイトをいくつか実装中。
                    932: <q>Implement access wait partially on some memory and devices.</q>
                    933: <li>vm (New): VM リセットを実装。<q>Implement VM reset.</q>
                    934: <li>vm (Fix): m88xx0 エミュレーションをいくつか改善。
                    935: OpenBSD/luna88k ユーザランドが少しだけ動くように。
                    936: <q>Improve some m88xx0 emulations.
                    937: This makes OpenBSD/luna88k userland apps work a little.</q>
1.1.1.12  root      938: <li>vm (Update): LUNA-88K の RAM 初期値を 64MB に変更。
                    939: <q>Change the initial value of LUNA-88K RAM to 64MB.</q>
                    940: <li>vm (Update): LUNA-88K の dipsw1 の初期値を変更。
                    941: <q>Change the initial value of LUNA-88K dipsw1.</q>
1.1.1.3   root      942: <li>debugger (Update): 設定の debugger-port の初期値を 0 に変更。
                    943: <q>Change the default value of debugger-port configuration field to 0.</q>
                    944: <li>debugger (Update): d, m, n, s, t, help コマンドを色々改良。
                    945: disp , reset コマンドを実装。
                    946: <q> Various improvements for d, m, n, s, t, and help commands.
                    947: Implement disp, reset commands.</q>
                    948: <li>wx (Fix): メインウィンドウの最大化とリサイズを不可にする。
                    949: <q>Disable main window's maximize and resize.</a>
                    950: <li>wx (Fix): ビッグエンディアン環境で wxIMAGE_QUALITY_HIGH
                    951: による縮小が化けるのを回避。
                    952: <q>Avoid broken resize using wxIMAGE_QUALITY_HIGH on big endian.</q>
                    953: </ul></dd>
1.1.1.4   root      954: <p>
1.1.1.3   root      955: 
1.1.1.2   root      956: <dt>0.1.1 (2020/10/06)
                    957: <dd><ul>
                    958: <li>host(Fix): sparc などのホストでミスアラインドアクセスで死ぬのを修正。
                    959: <q>Fix abnormal termination due to mis-aligned access on some architecture
                    960: hosts such as sparc.</q>
                    961: <li>vm (New): SCSI の Start Stop Unit コマンドをダミーで実装。
                    962: (OpenBSD カーネルが使っている)
                    963: <q>Implement SCSI Start Stop Unit command as no-op. (OpenBSD kernel uses it.)</q>
                    964: <li>vm (Fix): LUNA-I の PROM V4.22 以外はそのまま起動するようにしてみる。
                    965: <q>On LUNA-I, when PROM is other than V4.22, run it as is.</q>
                    966: <li>vm (Fix): SCSI コマンドがメディアサイズを超える位置やサイズを要求した時に死ぬのを修正。
                    967: <q>Fix abnormal termination when SCSI command requests exceeded position or length than actual media.</q>
                    968: <li>vm (Fix): LUNA-I エミュレーション ROM 上で、マウス操作でゴミが入力されるのを修正。
                    969: <q>Fix emitting garbage characters on mouse operation on LUNA-I emulated ROM.</q>
                    970: <li>GUI (New): LUNA のフロントパネル LCD ウィンドウを実装。
                    971: <q>Implement LUNA's front panel LCD window.</q>
                    972: <li>GUI (New): モニタウィンドウの更新頻度を設定可能にする。
                    973: <q>Make monitor window's refresh rate configureable.</q>
                    974: <li>GUI (New): ホスト情報ウィンドウ、ブレークポイントウィンドウ、履歴ウィンドウを実装。
                    975: <q>Implement host information window, breakpoint window, and
                    976: history window.</q>
                    977: <li>GUI (New): ログウィンドウのバックログを実装。
                    978: <q>Implement backlog of log window.</q>
                    979: <li>debugger (New): bi, bm, bv コマンドを実装。
                    980: <q>Implement bi, bm, and bv commands.</q>
                    981: <li>debugger (New): ブランチ履歴、例外履歴を実装。
                    982: <q>Implement branch history and exception history.</q>
                    983: <li>debugger (Fix): 逆アセンブラが 68020 の callm 命令で死んでいたのを修正。
                    984: <q>Fix abnormal termination when disassembling 68020 CALLM instruction.</q>
1.1.1.12  root      985: <li>vm (Fix): LUNA-88K 用の luna-dipsw1 の初期値を用意。
                    986: <q>luna-dipsw1 uses a different initial value for LUNA-88K.</q>
1.1.1.2   root      987: <li><span class=strike>vm (Update): X68k TVRAM レンダリングを改良。
1.1.1.4   root      988: <q>Improve performance on X68k TVRAM rendering.</q></span>
1.1.1.2   root      989: <li><span class=strike>debugger (Fix): 逆アセンブラで moveq.l が %d0 でない時にも IOCS コールと解釈していたのを修正。</span>
                    990: </ul></dd>
1.1.1.4   root      991: <p>
1.1.1.2   root      992: 
1.1       root      993: <dt>0.1.0 (2020/07/19)
                    994: <dd><ul>
1.1.1.6   root      995: <li>build(Fix): OpenBSD/FreeBSD でビルド可能に。
1.1.1.2   root      996: <q>Make it buildable on OpenBSD/FreeBSD.</q>
                    997: <li>GUI(Update): GUI メニューの L10N 対応
1.1       root      998: (GUI メニュー以外(ログメッセージなど)については当面対応予定はないです)。
                    999: <q>Support L10N for GUI menus
                   1000: (There are no plans to support more messages (like log messages)
1.1.1.2   root     1001: at least for now).</q>
                   1002: <li>GUI(Fix): サブウィンドウを表示しているとマウスモードでクリック入力が入らなかった問題を修正。
1.1       root     1003: <q>Fix problem that you can not enter any clicks in mouse mode
1.1.1.2   root     1004: when you display some sub windows.</q>
1.1.1.3   root     1005: <li>vm(New): m88k の疑似 STOP 状態に対応。
                   1006: <q>Support pseudo STOP state on m88k.</q>
1.1       root     1007: 
                   1008: </ul></dd>
                   1009: <p>
                   1010: 
                   1011: 
                   1012: <dt>0.0.4 (2020/06/13)
                   1013: <dd><ul>
1.1.1.2   root     1014: <li>vm(Fix): 例外ベクタ取得中のバスエラーで死んでいたのを修正。
1.1       root     1015: <q>Fix abnormal termination when fetching exception vector causes bus error.</q>
1.1.1.2   root     1016: <li>vm(Update): ダブルバスフォールトを通知。
1.1       root     1017: <q>Notify when double bus fault has occurred.</q>
1.1.1.3   root     1018: <li>vm(New): m88100 の改良と m88200 を実装中。
1.1       root     1019: OpenBSD/luna88k カーネルが起動しますが、
                   1020: まだユーザランドに入るあたりまでです。
1.1.1.3   root     1021: <q>Improve m88100 and implement m88200.
1.1       root     1022: It can run OpenBSD/luna88k kernel and
                   1023: it has just entered in userland.
                   1024: </q>
1.1.1.2   root     1025: <li><span class=strike>vm(New): x68k の MFP、DMAC を適当実装したので
1.1       root     1026: 実は NetBSD/x68k ブートローダまでは起動します。
                   1027: CRTC が不完全なのでスクロールはまだできません。
1.1.1.4   root     1028: <q>Implement MFP and DMAC in underground x68k mode.
1.1       root     1029: It can run NetBSD/x68k boot loader.
                   1030: However, CRTC emulation is not completed yet,
1.1.1.4   root     1031: so you cannot scroll text.</q></span>
1.1       root     1032: </ul></dd>
1.1.1.4   root     1033: <p>
1.1       root     1034: 
                   1035: <dt>0.0.3 (2020/05/16)
                   1036: <dd><ul>
1.1.1.2   root     1037: <li>vm(New): ROM モニタエミュレーションを実装。<q>Support emulated ROM monitor.</q>
1.1.1.3   root     1038: <li>vm(New): 地下で m88k 実装開始。
1.1       root     1039: 今のところ OpenBSD/luna88k のブートローダが起動できるだけです。
1.1.1.3   root     1040: <q>Start to implement m88k in underground.
1.1       root     1041: It just can run OpenBSD/luna88k's boot loader for now.
                   1042: </q>
                   1043: </ul></dd>
1.1.1.4   root     1044: <p>
1.1       root     1045: 
                   1046: <dt>0.0.2 (2020/04/21)
                   1047: <dd><ul>
1.1.1.2   root     1048: <li>vm(New): SCSI エミュレーションを改善。<q>Improve(Reimplement) SCSI emulation.</q>
                   1049: <li>vm(New): マウスをサポート。<q>Support mouse.</q>
                   1050: <li>vm(Fix): RFCNT の Y 座標を修正。<q>Fix Y coordinate of RFCNT.</q>
1.1       root     1051: </ul></dd>
1.1.1.4   root     1052: <p>
1.1       root     1053: 
                   1054: <dt>0.0.1 (2020/03/06)
                   1055: <dd><ul>
                   1056: <li>Initial Release
                   1057: </ul></dd>
                   1058: 
                   1059: </dl>
                   1060: </div>
                   1061: <hr>
                   1062: nono project
                   1063: </body>
                   1064: </html>

unix.superglobalmegacorp.com

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