This commit is contained in:
Jasmine Iwanek
2022-03-13 09:57:57 -04:00
parent 98be04c955
commit a61379eaee
23 changed files with 688 additions and 502 deletions

View File

@@ -303,11 +303,15 @@ vt82c686_init(const device_t *info)
const device_t via_vt82c686_sio_device = {
"VIA VT82C686 Integrated Super I/O",
"via_vt82c686_sio",
0,
0,
vt82c686_init, vt82c686_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "VIA VT82C686 Integrated Super I/O",
.internal_name = "via_vt82c686_sio",
.flags = 0,
.local = 0,
.init = vt82c686_init,
.close = vt82c686_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};