Added Xi8088 emulation. Patch from EluanCM.

This commit is contained in:
SarahW 2018-02-24 18:08:36 +00:00
commit 31dff3a509
17 changed files with 102 additions and 13 deletions

View file

@ -87,7 +87,7 @@ void fdc_reset()
fdc.lock = 0;
fdc.head = 0;
fdc.abort = 0;
if (!AT)
if (!AT && romset != ROM_XI8088)
{
fdc.rate = 2;
// fdc_update_rate();
@ -672,7 +672,8 @@ bad_command:
}
return;
case 7:
if (!AT) return;
if (!AT && romset != ROM_XI8088)
return;
fdc.rate=val&3;
disc_3f7=val;