The Super I/O chip keyboard controllers and a compile fix to the PS/55 machines.

This commit is contained in:
OBattler
2025-08-23 02:22:08 +02:00
parent 6de179581d
commit e34dc90cd4
8 changed files with 33 additions and 27 deletions

View File

@@ -537,13 +537,13 @@ pc87306_init(UNUSED(const device_t *info))
switch (dev->kbc_type) {
case PCX730X_AMI:
default:
dev->kbc = device_add(&kbc_ps2_intel_ami_pci_device);
dev->kbc = device_add_params(&kbc_ps2_ami_device, (void *) 0x00003500);
break;
case PCX730X_PHOENIX_42:
dev->kbc = device_add(&kbc_ps2_phoenix_device);
dev->kbc = device_add_params(&kbc_ps2_phoenix_device, (void *) 0x00013700);
break;
case PCX730X_PHOENIX_42I:
dev->kbc = device_add(&kbc_ps2_phoenix_pci_device);
dev->kbc = device_add_params(&kbc_ps2_phoenix_device, (void *) 0x00041600);
break;
}