mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 17:22:25 -05:00
Merge pull request #5158 from greblosdier/MVI486-fix-opti495
Fix incorrect Opti chipset for MVI486
This commit is contained in:
commit
24e3751eee
2 changed files with 3 additions and 3 deletions
|
@ -834,7 +834,7 @@ machine_at_mvi486_init(const machine_t *model)
|
||||||
|
|
||||||
machine_at_common_init(model);
|
machine_at_common_init(model);
|
||||||
|
|
||||||
device_add(&opti895_device);
|
device_add(&opti495_device);
|
||||||
device_add(&keyboard_at_device);
|
device_add(&keyboard_at_device);
|
||||||
device_add(&pc87311_ide_device);
|
device_add(&pc87311_ide_device);
|
||||||
|
|
||||||
|
|
|
@ -5962,10 +5962,10 @@ const machine_t machines[] = {
|
||||||
/* Uses some variant of Phoenix MultiKey/42 as the Intel 8242 chip has a Phoenix
|
/* Uses some variant of Phoenix MultiKey/42 as the Intel 8242 chip has a Phoenix
|
||||||
copyright. */
|
copyright. */
|
||||||
{
|
{
|
||||||
.name = "[OPTi 895] Mylex MVI486",
|
.name = "[OPTi 495] Mylex MVI486",
|
||||||
.internal_name = "mvi486",
|
.internal_name = "mvi486",
|
||||||
.type = MACHINE_TYPE_486,
|
.type = MACHINE_TYPE_486,
|
||||||
.chipset = MACHINE_CHIPSET_OPTI_895_802G,
|
.chipset = MACHINE_CHIPSET_OPTI_495,
|
||||||
.init = machine_at_mvi486_init,
|
.init = machine_at_mvi486_init,
|
||||||
.p1_handler = NULL,
|
.p1_handler = NULL,
|
||||||
.gpio_handler = NULL,
|
.gpio_handler = NULL,
|
||||||
|
|
Loading…
Reference in a new issue