This commit is contained in:
OBattler
2024-03-20 22:21:59 +01:00
7 changed files with 13 additions and 11 deletions

View File

@@ -723,11 +723,11 @@ machine_at_pc330_6573_common_init(const machine_t *model)
}
int
machine_at_aptiva_510_init(const machine_t *model)
machine_at_aptiva510_init(const machine_t *model)
{
int ret;
ret = bios_load_linear("roms/machines/aptiva_510/$IMAGES.USF",
ret = bios_load_linear("roms/machines/aptiva510/$IMAGES.USF",
0x000e0000, 131072, 0);
if (bios_only || !ret)

View File

@@ -7187,10 +7187,10 @@ const machine_t machines[] = {
/* Has IBM PS/2 Type 1 KBC firmware. */
{
.name = "[OPTi 802G] IBM Aptiva 510/710/Vision",
.internal_name = "aptiva_510",
.internal_name = "aptiva510",
.type = MACHINE_TYPE_486_S3,
.chipset = MACHINE_CHIPSET_OPTI_895_802G,
.init = machine_at_aptiva_510_init,
.init = machine_at_aptiva510_init,
.p1_handler = NULL,
.gpio_handler = NULL,
.available_flag = MACHINE_AVAILABLE,