Added AMI and MR 386SX and 486 clones using the same BIOS already used for the 386DX (same way we did for the Award already), the old AMI 386SX clone is now AMI Unknown 386SX (because we have no idea what chipset the BIOS is for), and the old AMI 486 clone is now the AMI ALi 1429.

This commit is contained in:
OBattler
2018-11-02 21:02:04 +01:00
parent ae0dfc6d89
commit 7b1a40164e
3 changed files with 21 additions and 9 deletions

View File

@@ -13,7 +13,7 @@
* - c386sx16 BIOS fails checksum
* - the loadfont() calls should be done elsewhere
*
* Version: @(#)rom.c 1.0.41 2018/10/17
* Version: @(#)rom.c 1.0.42 2018/11/02
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -545,15 +545,19 @@ rom_load_bios(int rom_id)
0x000000, 65536, 0, rom)) return(1);
break;
case ROM_AMI386SX_OPTI495: /* uses the OPTi 82C495 chipset */
case ROM_AMI386DX_OPTI495: /* uses the OPTi 82C495 chipset */
case ROM_AMI486_OPTI495: /* uses the OPTi 82C495 chipset */
if (rom_load_linear(
L"roms/machines/ami386dx/opt495sx.ami",
L"roms/machines/ami495/opt495sx.ami",
0x000000, 65536, 0, rom)) return(1);
break;
case ROM_MR386SX_OPTI495: /* uses the OPTi 82C495 chipset */
case ROM_MR386DX_OPTI495: /* uses the OPTi 82C495 chipset */
case ROM_MR486_OPTI495: /* uses the OPTi 82C495 chipset */
if (rom_load_linear(
L"roms/machines/mr386dx/opt495sx.mr",
L"roms/machines/mr495/opt495sx.mr",
0x000000, 65536, 0, rom)) return(1);
break;