This commit is contained in:
Jasmine Iwanek
2022-03-13 09:37:19 -04:00
parent a7edaf0608
commit 369f6774f9
12 changed files with 424 additions and 271 deletions

View File

@@ -313,11 +313,15 @@ opti611_init(const device_t *info)
const device_t ide_opti611_vlb_device = {
"OPTi 82C611/82C611A VLB",
"ide_opti611_vlb",
0,
0,
opti611_init, opti611_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "OPTi 82C611/82C611A VLB",
.internal_name = "ide_opti611_vlb",
.flags = DEVICE_VLB,
.local = 0,
.init = opti611_init,
.close = opti611_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};