--- nono/vm/tas.h 2026/04/29 17:04:56 1.1.1.5 +++ nono/vm/tas.h 2026/04/29 17:05:18 1.1.1.7 @@ -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 インタフェース @@ -30,5 +32,3 @@ class TASDevice : public IODevice private: std::atomic tas {}; // bit 7 のみ有効。 }; - -extern std::unique_ptr gTAS;