Disabled replacement DiagRom bios (vblank tests now appear to be working)
This commit is contained in:
parent
f8e1174aad
commit
aa1cfde69b
|
@ -117,7 +117,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
//private byte[] _file;
|
//private byte[] _file;
|
||||||
private readonly List<byte[]> _files;
|
private readonly List<byte[]> _files;
|
||||||
|
|
||||||
public bool DiagRom = true;
|
public bool DiagRom = false;
|
||||||
|
|
||||||
private byte[] GetFirmware(int length, params string[] names)
|
private byte[] GetFirmware(int length, params string[] names)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,7 +11,8 @@ At the moment this is very experimental and is still actively being worked on.
|
||||||
* Beeper/Buzzer output (implementing ISoundProvider)
|
* Beeper/Buzzer output (implementing ISoundProvider)
|
||||||
* AY-3-8912 sound chip implementation
|
* AY-3-8912 sound chip implementation
|
||||||
* Keyboard input (implementing IInputPollable)
|
* Keyboard input (implementing IInputPollable)
|
||||||
* Kempston joystick (mapped to J1 currently)
|
* Default keyboard keymappings
|
||||||
|
* Kempston, Cursor and Sinclair (Left & Right) joysticks emulated
|
||||||
* Tape device that will load spectrum games in realtime (*.tzx and *.tap)
|
* Tape device that will load spectrum games in realtime (*.tzx and *.tap)
|
||||||
* Most tape protection/loading schemes that I've tested are currently working (see caveat below)
|
* Most tape protection/loading schemes that I've tested are currently working (see caveat below)
|
||||||
* IStatable
|
* IStatable
|
||||||
|
@ -26,7 +27,6 @@ At the moment this is very experimental and is still actively being worked on.
|
||||||
### Not working
|
### Not working
|
||||||
* IDebuggable (probably IMemoryDomains is setup incorrectly)
|
* IDebuggable (probably IMemoryDomains is setup incorrectly)
|
||||||
* ZX Spectrum Plus3 emulation
|
* ZX Spectrum Plus3 emulation
|
||||||
* Default keyboard keymappings (you have to configure yourself in the core controller settings)
|
|
||||||
|
|
||||||
### Known bugs
|
### Known bugs
|
||||||
* Audible 'popping' from the emulated buzzer after a load state operation (maybe this is a normal thing)
|
* Audible 'popping' from the emulated buzzer after a load state operation (maybe this is a normal thing)
|
||||||
|
|
Loading…
Reference in New Issue