ZX Spectrum draft DB access
This commit is contained in:
parent
7428e8e673
commit
07b9e1243c
|
@ -93,6 +93,16 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
return bank[index];
|
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>
|
/// <summary>
|
||||||
/// Simulates writing to the bus (no contention)
|
/// Simulates writing to the bus (no contention)
|
||||||
/// Paging should be handled here
|
/// Paging should be handled here
|
||||||
|
|
Loading…
Reference in New Issue