From 7a52e7d6d2fe6b6d2defb260081f30591dbef88f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 13 Dec 2017 22:44:03 -0500 Subject: [PATCH] Provides an empty value for the interrupt cycle. --- Machines/MSX/MSX.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Machines/MSX/MSX.cpp b/Machines/MSX/MSX.cpp index 42ef4440c..e85c53760 100644 --- a/Machines/MSX/MSX.cpp +++ b/Machines/MSX/MSX.cpp @@ -175,6 +175,10 @@ class ConcreteMachine: } } break; + case CPU::Z80::PartialMachineCycle::Interrupt: + *cycle.value = 0xff; + break; + default: break; }