ZXHawk: Removed IO port contention for now (this fixes the slow beeper music problem). Will re-implement properly later - #1158

This commit is contained in:
Asnivor 2018-05-08 20:37:47 +01:00
parent 9c800cf133
commit 45c37ddc47
3 changed files with 4 additions and 2 deletions

View File

@ -52,6 +52,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
/// <param name="addr"></param>
public virtual void ContendPortAddress(ushort addr)
{
return;
/*
It takes four T states for the Z80 to read a value from an I/O port, or write a value to a port. As is the case with memory access,
this can be lengthened by the ULA. There are two effects which occur here:

View File

@ -287,7 +287,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
/// <param name="addr"></param>
public override void ContendPortAddress(ushort addr)
{
CPU.TotalExecutedCycles += 4;
//CPU.TotalExecutedCycles += 4;
}
}
}

View File

@ -220,7 +220,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
/// <param name="addr"></param>
public override void ContendPortAddress(ushort addr)
{
CPU.TotalExecutedCycles += 4;
//CPU.TotalExecutedCycles += 4;
}
}
}