From f772ea950a767052ce2a3e99918ac2d5873b88c7 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Wed, 30 Sep 2020 21:48:02 -0300 Subject: [PATCH] Remove special case for Cyrix III VCORE on the P3B-F, which is no longer needed with the latest BIOS --- src/machine/m_at_slot1.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/machine/m_at_slot1.c b/src/machine/m_at_slot1.c index 2305dba7d..eb135d6cc 100644 --- a/src/machine/m_at_slot1.c +++ b/src/machine/m_at_slot1.c @@ -232,7 +232,7 @@ machine_at_p6i440e2_init(const machine_t *model) machine_hwm.voltages[0] = 2800; /* set higher VCORE (2.8V) for Klamath */ hwm_set_values(machine_hwm); device_add(&w83781d_device); - + return ret; } @@ -300,7 +300,7 @@ machine_at_p3bf_init(const machine_t *model) { int ret; - ret = bios_load_linear(L"roms/machines/p3bf/bx3f1006.awd", + ret = bios_load_linear(L"roms/machines/p3bf/1008f.004", 0x000c0000, 262144, 0); if (bios_only || !ret) @@ -346,8 +346,6 @@ machine_at_p3bf_init(const machine_t *model) }; if (model->cpu[cpu_manufacturer].cpus[cpu_effective].cpu_type == CPU_PENTIUM2) machine_hwm.voltages[0] = 2800; /* set higher VCORE (2.8V) for Klamath */ - else if (model->cpu[cpu_manufacturer].cpus[cpu_effective].cpu_type == CPU_CYRIX3S) - machine_hwm.voltages[0] = 2800; /* P3B-F specific issue: it believes the Cyrix III is a Klamath, and therefore expects a toasty 2.8V */ hwm_set_values(machine_hwm); device_add(&as99127f_device);