ZXHawk: removed maskable interrupt tape trap. Does not work as it should.

This commit is contained in:
Asnivor 2018-03-26 17:29:31 +01:00
parent e8cd3b259c
commit 2f35bec264
1 changed files with 6 additions and 6 deletions

View File

@ -211,13 +211,13 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
//
if (addr == 56)
{
TapeDevice.MaskableInterruptCount++;
//TapeDevice.MaskableInterruptCount++;
if (TapeDevice.MaskableInterruptCount > 20)
{
TapeDevice.MaskableInterruptCount = 0;
TapeDevice.AutoStopTape();
}
//if (TapeDevice.MaskableInterruptCount > 50)
//{
//TapeDevice.MaskableInterruptCount = 0;
//TapeDevice.AutoStopTape();
//}
//TapeDevice?.AutoStopTape();
return;