This commit is contained in:
Jasmine Iwanek
2022-03-13 09:15:11 -04:00
parent c5d1a7b456
commit 66a687d68d
10 changed files with 411 additions and 342 deletions

View File

@@ -153,10 +153,15 @@ ps2_nvr_close(void *priv)
const device_t ps2_nvr_device = {
"PS/2 Secondary NVRAM",
"ps2_nvr",
0, 0,
ps2_nvr_init, ps2_nvr_close, NULL,
{ NULL }, NULL,
NULL
.name = "PS/2 Secondary NVRAM",
.internal_name = "ps2_nvr",
.flags = 0,
.local = 0,
.init = ps2_nvr_init,
.close = ps2_nvr_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};