--- nono/m88xx0/m88100.h 2026/04/29 17:04:49 1.1.1.7 +++ nono/m88xx0/m88100.h 2026/04/29 17:04:52 1.1.1.8 @@ -167,12 +167,14 @@ class m88kcpu : public m88100reg }; public: - m88kcpu(uint32 reset_vector_); + m88kcpu(); virtual ~m88kcpu(); + void PowerOn(); + void RequestReset(); + uint32 Run(uint32 delta); void Release(); - void RequestReset(); // 仮想時刻を返す uint64 GetVTime() const { return total_vtime + Cycle2Vtime(used_cycle); } @@ -317,9 +319,6 @@ OP_PROTO(illegal); // ペンディング中の割り込みレベル int intr_pending {}; - // リセットベクタ - uint32 reset_vector {}; - // 例外名 static const char * const exception_names[]; };