Added the IBM PS/ValuePoint P60

Just like the IBM Ambra's, it's a standard Intel 430LX OEM board with it's own special BIOS.
This commit is contained in:
tiseno100
2019-12-17 15:40:01 +02:00
committed by GitHub
parent 9e1100ec3d
commit 4c3ebddb94
4 changed files with 21 additions and 0 deletions

View File

@@ -122,6 +122,24 @@ machine_at_ambradp60_init(const machine_t *model)
return ret;
}
int
machine_at_valuepointp60_init(const machine_t *model)
{
int ret;
ret = bios_load_linear_combined(L"roms/machines/valuepointp60/1006AV0M.BIO",
L"roms/machines/valuepointp60/1006AV0M.BI1", 0x1d000, 128);
if (bios_only || !ret)
return ret;
machine_at_premiere_common_init(model);
device_add(&i430lx_device);
return ret;
}
int
machine_at_586mc1_init(const machine_t *model)
{