Slight rom load fix for the Compaq Portable II/III/386 (but I wonder if they use the same approach as the Amstrad PC2086/3086).
This commit is contained in:
@@ -842,9 +842,9 @@ machine_at_portableii_init(const machine_t *model)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = bios_load_interleaved(L"roms/machines/portableii/109740-001.rom",
|
ret = bios_load_interleavedr(L"roms/machines/portableii/109740-001.rom",
|
||||||
L"roms/machines/portableii/109739-001.rom",
|
L"roms/machines/portableii/109739-001.rom",
|
||||||
0x000f8000, 32768, 0);
|
0x000f8000, 65536, 0);
|
||||||
|
|
||||||
if (bios_only || !ret)
|
if (bios_only || !ret)
|
||||||
return ret;
|
return ret;
|
||||||
@@ -860,9 +860,9 @@ machine_at_portableiii_init(const machine_t *model)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = bios_load_interleaved(L"roms/machines/portableiii/Compaq Portable III - BIOS - 106779-002 - Even.bin",
|
ret = bios_load_interleavedr(L"roms/machines/portableiii/Compaq Portable III - BIOS - 106779-002 - Even.bin",
|
||||||
L"roms/machines/portableiii/Compaq Portable III - BIOS - 106778-002 - Odd.bin",
|
L"roms/machines/portableiii/Compaq Portable III - BIOS - 106778-002 - Odd.bin",
|
||||||
0x000f8000, 32768, 0);
|
0x000f8000, 65536, 0);
|
||||||
|
|
||||||
if (bios_only || !ret)
|
if (bios_only || !ret)
|
||||||
return ret;
|
return ret;
|
||||||
@@ -878,9 +878,9 @@ machine_at_portableiii386_init(const machine_t *model)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = bios_load_interleaved(L"roms/machines/portableiii/Compaq Portable III - BIOS - 106779-002 - Even.bin",
|
ret = bios_load_interleavedr(L"roms/machines/portableiii/Compaq Portable III - BIOS - 106779-002 - Even.bin",
|
||||||
L"roms/machines/portableiii/Compaq Portable III - BIOS - 106778-002 - Odd.bin",
|
L"roms/machines/portableiii/Compaq Portable III - BIOS - 106778-002 - Odd.bin",
|
||||||
0x000f8000, 32768, 0);
|
0x000f8000, 65536, 0);
|
||||||
|
|
||||||
if (bios_only || !ret)
|
if (bios_only || !ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user