diff --git a/src/include/86box/machine.h b/src/include/86box/machine.h index 628e388e8..48e7dc781 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -1025,6 +1025,9 @@ extern const device_t ap5s_device; #endif extern int machine_at_ap5s_init(const machine_t *); extern int machine_at_pc140_6260_init(const machine_t *); +#ifdef EMU_DEVICE_H +extern const device_t ms5124_device; +#endif extern int machine_at_ms5124_init(const machine_t *); /* VLSI Wildcat */ diff --git a/src/machine/m_at_socket7_3v.c b/src/machine/m_at_socket7_3v.c index 7336c36d0..28c75bacb 100644 --- a/src/machine/m_at_socket7_3v.c +++ b/src/machine/m_at_socket7_3v.c @@ -1556,17 +1556,72 @@ machine_at_pc140_6260_init(const machine_t *model) return ret; } +static const device_config_t ms5124_config[] = { + // clang-format off + { + .name = "bios", + .description = "BIOS Version", + .type = CONFIG_BIOS, + .default_string = "ms5124", + .default_int = 0, + .file_filter = NULL, + .spinner = { 0 }, + .selection = { { 0 } }, + .bios = { + { + .name = "AMI WinBIOS (101094) - Revision AG77", + .internal_name = "ms5124", + .bios_type = BIOS_NORMAL, + .files_no = 1, + .local = 0, + .size = 131072, + .files = { "roms/machines/ms5124/AG77.ROM", "" } + }, + { + .name = "Award Modular BIOS v4.51PG - Revision WG72P", + .internal_name = "ms5124_451pg", + .bios_type = BIOS_NORMAL, + .files_no = 1, + .local = 0, + .size = 131072, + .files = { "roms/machines/ms5124/WG72P.BIN", "" } + }, + { .files_no = 0 } + } + }, + { .name = "", .description = "", .type = CONFIG_END } + // clang-format on +}; + +const device_t ms5124_device = { + .name = "MSI MS-5124", + .internal_name = "ms5124_device", + .flags = 0, + .local = 0, + .init = NULL, + .close = NULL, + .reset = NULL, + .available = NULL, + .speed_changed = NULL, + .force_redraw = NULL, + .config = ms5124_config +}; + int machine_at_ms5124_init(const machine_t *model) { - int ret; + int ret = 0; + const char *fn; - ret = bios_load_linear("roms/machines/ms5124/AG77.ROM", - 0x000e0000, 131072, 0); - - if (bios_only || !ret) + /* No ROMs available */ + if (!device_available(model->device)) return ret; + device_context(model->device); + fn = device_get_bios_file(machine_get_device(machine), device_get_config_bios("bios"), 0); + ret = bios_load_linear(fn, 0x000e0000, 131072, 0); + device_context_restore(); + machine_at_common_init_ex(model, 2); pci_init(PCI_CONFIG_TYPE_1 | FLAG_TRC_CONTROLS_CPURST); diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index bd68734c7..9e7c86056 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -14268,7 +14268,7 @@ const machine_t machines[] = { .kbc_p1 = 0x00000cf0, .gpio = 0xffffffff, .gpio_acpi = 0xffffffff, - .device = NULL, + .device = &ms5124_device, .kbd_device = NULL, .fdc_device = NULL, .sio_device = NULL,