From 80d4846a2725211315f8f3c78a329cf223863298 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 18 Apr 2021 11:56:00 -0400 Subject: [PATCH] Respond with 0xff during an interrupt acknowledge. --- Machines/Sinclair/ZXSpectrum/ZXSpectrum.cpp | 32 ++++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/Machines/Sinclair/ZXSpectrum/ZXSpectrum.cpp b/Machines/Sinclair/ZXSpectrum/ZXSpectrum.cpp index 4727f903b..cc7e28cac 100644 --- a/Machines/Sinclair/ZXSpectrum/ZXSpectrum.cpp +++ b/Machines/Sinclair/ZXSpectrum/ZXSpectrum.cpp @@ -224,6 +224,17 @@ template class ConcreteMachine: } } else { switch(cycle.operation) { + case CPU::Z80::PartialMachineCycle::Input: + case CPU::Z80::PartialMachineCycle::Output: + case CPU::Z80::PartialMachineCycle::Read: + case CPU::Z80::PartialMachineCycle::Write: + case CPU::Z80::PartialMachineCycle::ReadOpcode: + case CPU::Z80::PartialMachineCycle::Interrupt: + // For these, carry on into the actual handler, below. + break; + + // For anything else that isn't listed below, just advance + // time and conclude here. default: advance(cycle.length); return HalfCycles(0); @@ -250,7 +261,7 @@ template class ConcreteMachine: advance(cycle.length + delay); return delay; - } + } break; case PartialMachineCycle::ReadOpcodeStart: case PartialMachineCycle::ReadStart: @@ -263,7 +274,7 @@ template class ConcreteMachine: advance(cycle.length + delay); return delay; } - } + } break; case PartialMachineCycle::Internal: { // Whatever's on the address bus will remain there, without IOREQ or @@ -284,15 +295,7 @@ template class ConcreteMachine: advance(cycle.length + delay); return delay; } - } - - case CPU::Z80::PartialMachineCycle::Input: - case CPU::Z80::PartialMachineCycle::Output: - case CPU::Z80::PartialMachineCycle::Read: - case CPU::Z80::PartialMachineCycle::Write: - case CPU::Z80::PartialMachineCycle::ReadOpcode: - // For these, carry on into the actual handler, below. - break; + } break; } } @@ -496,6 +499,13 @@ template class ConcreteMachine: } } } break; + + case PartialMachineCycle::Interrupt: + // At least one piece of Spectrum software, Escape from M.O.N.J.A.S. explicitly + // assumes that a 0xff value will be on the bus during an interrupt acknowledgment. + // I wasn't otherwise aware that this value is reliable. + *cycle.value = 0xff; + break; } return HalfCycles(0);