ZX Spectrum draft DB access

This commit is contained in:
alyosha-tas 2017-11-29 16:31:53 -05:00 committed by GitHub
parent 7428e8e673
commit 07b9e1243c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 196 additions and 186 deletions

View File

@ -93,6 +93,16 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
return bank[index];
}
/// <summary>
/// Pushes a value onto the data bus that should be valid as long as the interrupt is true
/// </summary>
/// <param name="addr"></param>
/// <returns></returns>
public override byte PushBus()
{
return 0xFF;
}
/// <summary>
/// Simulates writing to the bus (no contention)
/// Paging should be handled here