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

@@ -282,7 +282,8 @@ void tvga_recalctimings(svga_t *svga)
}
}
void *tvga8900d_init()
static void *tvga8900d_init(device_t *info)
{
tvga_t *tvga = malloc(sizeof(tvga_t));
memset(tvga, 0, sizeof(tvga_t));
@@ -303,7 +304,7 @@ void *tvga8900d_init()
return tvga;
}
static int tvga8900d_available()
static int tvga8900d_available(void)
{
return rom_present(L"roms/video/tvga/TRIDENT.BIN");
}
@@ -367,8 +368,10 @@ device_t tvga8900d_device =
{
"Trident TVGA 8900D",
0,
0,
tvga8900d_init,
tvga_close,
NULL,
tvga8900d_available,
tvga_speed_changed,
tvga_force_redraw,