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:
@@ -517,7 +517,8 @@ void pcjr_poll(void *p)
|
||||
}
|
||||
}
|
||||
|
||||
static void *pcjr_video_init()
|
||||
|
||||
static void *pcjr_video_init(device_t *info)
|
||||
{
|
||||
int display_type;
|
||||
pcjr_t *pcjr = malloc(sizeof(pcjr_t));
|
||||
@@ -551,9 +552,10 @@ static void pcjr_speed_changed(void *p)
|
||||
device_t pcjr_video_device =
|
||||
{
|
||||
"IBM PCjr (video)",
|
||||
0,
|
||||
0, 0,
|
||||
pcjr_video_init,
|
||||
pcjr_video_close,
|
||||
NULL,
|
||||
NULL,
|
||||
pcjr_speed_changed,
|
||||
NULL,
|
||||
@@ -586,9 +588,10 @@ static device_config_t pcjr_config[] =
|
||||
static device_t pcjr_device =
|
||||
{
|
||||
"IBM PCjr",
|
||||
0,
|
||||
0, 0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
|
||||
Reference in New Issue
Block a user