Backported the VLSI 82c113 Super I/O chip from my branch because of two machines we already had that require it.

This commit is contained in:
OBattler
2024-07-22 00:07:39 +02:00
parent ad710b710d
commit fc714e7270
5 changed files with 172 additions and 3 deletions

View File

@@ -644,7 +644,12 @@ machine_at_cmdsl386sx25_init(const machine_t *model)
if (gfxcard[0] == VID_INTERNAL)
device_add(&gd5402_onboard_device);
machine_at_scamp_common_init(model, 1);
machine_at_common_ide_init(model);
device_add(&ali5105_device); /* The FDC is part of the ALi M5105. */
device_add(&vl82c113_device); /* The keyboard controller is part of the VL82c113. */
device_add(&vlsi_scamp_device);
return ret;
}