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

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

unix.superglobalmegacorp.com

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