IBM PS/2 Model 30-286 now uses XTIDE version 1.1.5;

The 287 FPU is now correctly detected as such;
Added two instructions that were incorrectly missing from the 286, fixes Standard Mode Windows.
This commit is contained in:
OBattler
2017-03-02 04:49:53 +01:00
parent 13683628a5
commit 64c941320f
4 changed files with 59 additions and 9 deletions

View File

@@ -611,6 +611,10 @@ int loadbios()
fread(rom, 0x20000, 1, f);
fclose(f);
biosmask = 0x1ffff;
if (enable_xtide)
{
mem_load_atide115_bios();
}
return 1;
case ROM_DESKPRO_386:
@@ -729,7 +733,7 @@ int loadbios()
biosmask = 0x1ffff;
if (enable_xtide)
{
mem_load_atide_bios();
mem_load_atide115_bios();
}
return 1;