Merge pull request #5158 from greblosdier/MVI486-fix-opti495

Fix incorrect Opti chipset for MVI486
This commit is contained in:
Miran Grča 2025-01-16 23:29:27 +01:00 committed by GitHub
commit 24e3751eee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -834,7 +834,7 @@ machine_at_mvi486_init(const machine_t *model)
machine_at_common_init(model);
device_add(&opti895_device);
device_add(&opti495_device);
device_add(&keyboard_at_device);
device_add(&pc87311_ide_device);

View file

@ -5962,10 +5962,10 @@ const machine_t machines[] = {
/* Uses some variant of Phoenix MultiKey/42 as the Intel 8242 chip has a Phoenix
copyright. */
{
.name = "[OPTi 895] Mylex MVI486",
.name = "[OPTi 495] Mylex MVI486",
.internal_name = "mvi486",
.type = MACHINE_TYPE_486,
.chipset = MACHINE_CHIPSET_OPTI_895_802G,
.chipset = MACHINE_CHIPSET_OPTI_495,
.init = machine_at_mvi486_init,
.p1_handler = NULL,
.gpio_handler = NULL,