diff --git a/Machines/Acorn/Tube/Tube6502.hpp b/Machines/Acorn/Tube/Tube6502.hpp index 36a6f16db..ef38f805c 100644 --- a/Machines/Acorn/Tube/Tube6502.hpp +++ b/Machines/Acorn/Tube/Tube6502.hpp @@ -45,6 +45,14 @@ public: std::copy(source.begin(), source.end(), &ram_[65536 - 2048]); } + void set_tube_irq() { + m6502_.set(true); + } + + void set_tube_nmi() { + m6502_.set(true); + } + private: uint8_t ram_[65536]; Cycles cycles_modulo_;