--- nono/vm/tas.h 2026/04/29 17:04:56 1.1.1.5 +++ nono/vm/tas.h 2026/04/29 17:05:11 1.1.1.6 @@ -4,7 +4,9 @@ // Licensed under nono-license.txt // +// // TAS ポート +// #pragma once @@ -18,7 +20,7 @@ class TASDevice : public IODevice TASDevice(); virtual ~TASDevice() override; - void ResetHard() override; + void ResetHard(bool poweron) override; protected: // BusIO インタフェース @@ -31,4 +33,4 @@ class TASDevice : public IODevice std::atomic tas {}; // bit 7 のみ有効。 }; -extern std::unique_ptr gTAS; +extern TASDevice *gTAS;