Added SiS 550x, 558x, 559x, (5)600, UMC UM8890, UMC UM8663 Super I/O Chips, UMC UM8673F and Winbond W83769F IDE Contollers, and a number of machines, and fixes to the UM888x 486 chipset.

This commit is contained in:
OBattler
2024-02-22 00:52:20 +01:00
parent c902282dbf
commit 58a0c840c1
54 changed files with 10672 additions and 2289 deletions

View File

@@ -3155,7 +3155,7 @@ tgui_init(const device_t *info)
break;
case TGUI_9660:
case TGUI_9680:
bios_fn = ROM_TGUI_96xx;
bios_fn = (info->local & ONBOARD) ? NULL : ROM_TGUI_96xx;
break;
default:
free(tgui);
@@ -3402,6 +3402,20 @@ const device_t tgui9660_pci_device = {
.config = tgui96xx_config
};
const device_t tgui9660_onboard_pci_device = {
.name = "Trident TGUI 9660XGi On-Board PCI",
.internal_name = "tgui9660_onboard_pci",
.flags = DEVICE_PCI,
.local = TGUI_9660 | ONBOARD,
.init = tgui_init,
.close = tgui_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = tgui_speed_changed,
.force_redraw = tgui_force_redraw,
.config = tgui96xx_config
};
const device_t tgui9680_pci_device = {
.name = "Trident TGUI 9680XGi PCI",
.internal_name = "tgui9680_pci",