Added the two Silicon Valley machiens and fixes 386 FPU flag on reset.

This commit is contained in:
OBattler
2025-08-14 16:29:09 +02:00
parent 2f7de1d23d
commit 95e98b1b20
6 changed files with 141 additions and 1 deletions

View File

@@ -92,6 +92,28 @@ machine_at_ga486l_init(const machine_t *model)
return ret;
}
/* OPTi 493 */
int
machine_at_svc486wb_init(const machine_t *model)
{
int ret;
ret = bios_load_linear("roms/machines/svc486wb/svc486wb-AM27C512DIP28.BIN",
0x000f0000, 65536, 0);
if (bios_only || !ret)
return ret;
machine_at_common_init(model);
device_add(&opti493_device);
device_add(&kbc_at_ami_device);
device_add(&ide_isa_device);
return ret;
}
/* OPTi 498 */
int
machine_at_mvi486_init(const machine_t *model)