Make the SMC FDC37c935 Super I/O chip on the HP Brio 80xx and Packard Bell PB810 correctly use port 370h instead of the standard 3F0h, fixes #4427.

This commit is contained in:
OBattler
2024-05-07 20:09:30 +02:00
parent fedb2f37e5
commit 509305f2f1
3 changed files with 26 additions and 9 deletions

View File

@@ -657,7 +657,7 @@ machine_at_brio80xx_init(const machine_t *model)
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
device_add(&i430vx_device);
device_add(&piix3_device);
device_add(&fdc37c935_device);
device_add(&fdc37c935_370_device);
device_add(&sst_flash_29ee020_device);
return ret;
@@ -726,7 +726,7 @@ machine_at_pb810_init(const machine_t *model)
device_add(&i430vx_device);
device_add(&piix3_device);
device_add(&fdc37c935_device);
device_add(&fdc37c935_370_device);
device_add(&intel_flash_bxt_device);
return ret;