PCI secondary channel only variant of the CMD640.

This commit is contained in:
OBattler
2023-07-22 21:59:38 +02:00
parent 2d70685ef6
commit eac6055103
2 changed files with 27 additions and 12 deletions

View File

@@ -636,3 +636,17 @@ const device_t ide_cmd640_pci_single_channel_device = {
.force_redraw = NULL,
.config = NULL
};
const device_t ide_cmd640_pci_single_channel_sec_device = {
.name = "CMD PCI-0640B PCI",
.internal_name = "ide_cmd640_pci_single_channel_sec",
.flags = DEVICE_PCI,
.local = 0x4000a,
.init = cmd640_init,
.close = cmd640_close,
.reset = cmd640_reset,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};