More fixe and renamed the 440BX machine to 6ABX3.

This commit is contained in:
OBattler
2020-03-01 00:23:47 +01:00
parent 1972afd8aa
commit d26dfc8f0e
3 changed files with 4 additions and 4 deletions

View File

@@ -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)

View File

@@ -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 */

View File

@@ -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 }
};