--- nono/debugger/branchhistory.cpp 2026/04/29 17:05:41 1.1.1.11 +++ nono/debugger/branchhistory.cpp 2026/04/29 17:05:49 1.1.1.12 @@ -325,7 +325,7 @@ BranchHistory_m680x0::FormatEntry(const // // 例外発生: // from は上位30ビットが例外発生時の XIP、最下位ビットが S/U、 -// to は 0。 +// to は不問。 // info は、9 ビットのベクタ番号と、ベクタが OpenBSD/m88k システムコール // の場合はシステムコール番号を含む。 // 3 2 1 0 @@ -354,7 +354,7 @@ BranchHistory_m88xx0::FormatEntry(const std::string desc = string_format("%c:%08x", (e.from & 1) ? 'S' : 'U', (e.from & ~1)); - if (e.info >= 0xfc000000 && e.to == 0) { + if (e.info >= 0xfc000000) { // 例外発生記録 // 発生アドレスとベクタを表示 uint32 vector = e.info & 0x1ff;