--- nono/m88xx0/m88100.h 2026/04/29 17:04:54 1.1.1.9 +++ nono/m88xx0/m88100.h 2026/04/29 17:04:57 1.1.1.10 @@ -236,6 +236,9 @@ class m88kcpu : public m88100reg // 疑似 STOP 状態に入る機能を有効にする場合 true bool pseudo_stop_enable {}; + // DOS call エミュレーションコールバックを設定する + void SetFLineCallback(bool (*callback)(m88kcpu *, void *), void *arg); + private: void Reset(); @@ -322,6 +325,10 @@ OP_PROTO(illegal); // ペンディング中の割り込みレベル int intr_pending {}; + // DOS call エミュレーション + bool (*fline_callback)(m88kcpu *, void *) = NULL; + void *fline_arg {}; + // 例外名 static const char * const exception_names[]; };