From d26dfc8f0ea75af8bf5e4411d303cce894c8c8a9 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 1 Mar 2020 00:23:47 +0100 Subject: [PATCH] More fixe and renamed the 440BX machine to 6ABX3. --- src/machine/m_at_socket8.c | 4 ++-- src/machine/machine.h | 2 +- src/machine/machine_table.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/machine/m_at_socket8.c b/src/machine/m_at_socket8.c index c6e08bacc..47a02afd2 100644 --- a/src/machine/m_at_socket8.c +++ b/src/machine/m_at_socket8.c @@ -104,11 +104,11 @@ machine_at_s1668_init(const machine_t *model) int -machine_at_ax6bc_init(const machine_t *model) +machine_at_6abx3_init(const machine_t *model) { int ret; - ret = bios_load_linear(L"roms/machines/ax6bc/QS440BX 2M_2.10.bin", + ret = bios_load_linear(L"roms/machines/6axb3/6abx3h1.bin", 0x000c0000, 262144, 0); if (bios_only || !ret) diff --git a/src/machine/machine.h b/src/machine/machine.h index c0a59a7b6..74b214200 100644 --- a/src/machine/machine.h +++ b/src/machine/machine.h @@ -305,7 +305,7 @@ extern const device_t *at_pb640_get_device(void); extern int machine_at_i440fx_init(const machine_t *); extern int machine_at_s1668_init(const machine_t *); -extern int machine_at_ax6bc_init(const machine_t *); +extern int machine_at_6abx3_init(const machine_t *); #endif /* m_at_t3100e.c */ diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index f0a2cfedc..c43ecd46b 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -237,7 +237,7 @@ const machine_t machines[] = { { "[Socket 8 FX] Tyan Titan-Pro AT", "440fx", {{"Intel", cpus_PentiumPro}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_PCI | MACHINE_ISA | MACHINE_AT | MACHINE_PS2 | MACHINE_HDC, 8, 1024, 8, 127, machine_at_i440fx_init, NULL }, { "[Socket 8 FX] Tyan Titan-Pro ATX", "tpatx", {{"Intel", cpus_PentiumPro}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_PCI | MACHINE_ISA | MACHINE_AT | MACHINE_PS2 | MACHINE_HDC, 8, 1024, 8, 127, machine_at_s1668_init, NULL }, - { "[Slot 1 FX] AOpen AX6BC", "ax6bc", {{"Intel", cpus_PentiumII}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_PCI | MACHINE_ISA | MACHINE_AT | MACHINE_PS2 | MACHINE_HDC, 8, 1024, 8, 127, machine_at_ax6bc_init, NULL }, + { "[Slot 1 FX] Lucky Star 6ABX3", "6abx3", {{"Intel", cpus_PentiumII}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_PCI | MACHINE_ISA | MACHINE_AT | MACHINE_PS2 | MACHINE_HDC, 8, 1024, 8, 255, machine_at_6abx3_init, NULL }, #endif { NULL, NULL, {{"", 0}, {"", 0}, {"", 0}, {"", 0}, {"", 0}}, 0, 0, 0, 0, 0, NULL, NULL } };