Add the MSI MS-4144.

This commit is contained in:
BurnedPinguin
2023-07-22 16:35:15 +02:00
parent e3a3d846bb
commit 590873f72f
2 changed files with 66 additions and 0 deletions

View File

@@ -1035,6 +1035,33 @@ machine_at_4dps_init(const machine_t *model)
return ret;
}
int
machine_at_ms4144_init(const machine_t *model)
{
int ret;
ret = bios_load_linear("roms/machines/ms4144/ms-4144-1.4.bin",
0x000e0000, 131072, 0);
if (bios_only || !ret)
return ret;
machine_at_common_init_ex(model, 2);
machine_at_sis_85c496_common_init(model);
device_add(&sis_85c496_ls486e_device);
pci_register_slot(0x03, PCI_CARD_NORMAL, 1, 2, 3, 4);
pci_register_slot(0x0D, PCI_CARD_NORMAL, 2, 3, 4, 1);
pci_register_slot(0x0F, PCI_CARD_NORMAL, 3, 4, 1, 2);
device_add(&w83787f_device);
device_add(&keyboard_at_ami_device);
device_add(&sst_flash_29ee010_device);
return ret;
}
int
machine_at_486sp3c_init(const machine_t *model)
{

View File

@@ -7477,6 +7477,45 @@ const machine_t machines[] = {
.snd_device = NULL,
.net_device = NULL
},
/* AMIKEY-2 */
{
.name = "[SiS 496] MSI MS-4144",
.internal_name = "ms4144",
.type = MACHINE_TYPE_486_S3,
.chipset = MACHINE_CHIPSET_SIS_496,
.init = machine_at_ms4144_init,
.pad = 0,
.pad0 = 0,
.pad1 = MACHINE_AVAILABLE,
.pad2 = 0,
.cpu = {
.package = CPU_PKG_SOCKET3,
.block = CPU_BLOCK_NONE,
.min_bus = 0,
.max_bus = 0,
.min_voltage = 0,
.max_voltage = 0,
.min_multi = 0,
.max_multi = 0
},
.bus_flags = MACHINE_PCI,
.flags = MACHINE_SUPER_IO | MACHINE_IDE_DUAL | MACHINE_APM,
.ram = {
.min = 1024,
.max = 131072,
.step = 1024
},
.nvrmask = 127,
.kbc_device = NULL,
.kbc_p1 = 0,
.gpio = 0,
.device = NULL,
.fdc_device = NULL,
.sio_device = NULL,
.vid_device = NULL,
.snd_device = NULL,
.net_device = NULL
},
/* This has the UMC 88xx on-chip KBC. */
{
.name = "[UMC 8881] A-Trend ATC-1415",