Major changes to NVR, system initialization (pc.c), and what goes on in the Windows startup (win.c.) Not fully done yet, but good enough for a first commit.

This commit is contained in:
waltje
2017-10-07 00:46:54 -04:00
parent 95fe21b651
commit 2b37b7fbfb
108 changed files with 5628 additions and 5912 deletions

View File

@@ -158,7 +158,7 @@ uint8_t cms_read(uint16_t addr, void *p)
return cms->regs[chip][cms->addrs[chip] & 31];
}
void *cms_init()
void *cms_init(device_t *info)
{
cms_t *cms = malloc(sizeof(cms_t));
memset(cms, 0, sizeof(cms_t));
@@ -179,11 +179,8 @@ void cms_close(void *p)
device_t cms_device =
{
"Creative Music System / Game Blaster",
0,
cms_init,
cms_close,
NULL,
NULL,
NULL,
0, 0,
cms_init, cms_close, NULL,
NULL, NULL, NULL, NULL,
NULL
};