Remove special case for Cyrix III VCORE on the P3B-F, which is no longer needed with the latest BIOS

This commit is contained in:
RichardG867
2020-09-30 21:48:02 -03:00
parent c4484e3705
commit f772ea950a

View File

@@ -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);