src/chipset

This commit is contained in:
Jasmine Iwanek
2022-03-13 09:21:08 -04:00
parent 66a687d68d
commit a52f0cca79
49 changed files with 1268 additions and 1214 deletions

View File

@@ -176,14 +176,15 @@ opti5x7_init(const device_t *info)
}
const device_t opti5x7_device = {
"OPTi 82C5x6/82C5x7",
"opti5x7",
0,
0,
opti5x7_init,
opti5x7_close,
NULL,
{NULL},
NULL,
NULL,
NULL};
.name = "OPTi 82C5x6/82C5x7",
.internal_name = "opti5x7",
.flags = 0,
.local = 0,
.init = opti5x7_init,
.close = opti5x7_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};