Previous 199869 Revisions Next

r17912 Sunday 16th September, 2012 at 00:24:35 UTC by R. Belmont
(MESS) apple2gs: Save states now officially supported. [R. Belmont]
[src/mess/drivers]apple2gs.c
[src/mess/machine]apple2gs.c

trunk/src/mess/machine/apple2gs.c
r17911r17912
19491949   state_save_register_item_pointer(machine(), "APPLE2GS_RAM", NULL, 0, ram, machine().device<ram_device>(RAM_TAG)->size());
19501950
19511951   state_save_register_item(machine(), "NEWVIDEO", NULL, 0, m_newvideo);
1952
1952   state_save_register_item(machine(), "BORDERCOLOR", NULL, 0, m_bordercolor);
19531953   state_save_register_item(machine(), "VGCINT", NULL,0, m_vgcint);
19541954   state_save_register_item(machine(), "LANGSEL", NULL,0, m_langsel);
19551955   state_save_register_item(machine(), "SLTROMSEL", NULL,0, m_sltromsel);
r17911r17912
19911991   state_save_register_item(machine(), "SNDGLUADDR", NULL,0, m_sndglu_addr);
19921992   state_save_register_item(machine(), "SNDGLUDUMMYRD", NULL,0, m_sndglu_dummy_read);
19931993
1994   state_save_register_item(machine(), "ECHOBANK", NULL,0, m_echo_bank);
1995
19941996   m_clock_timer = machine().scheduler().timer_alloc(FUNC(apple2gs_clock_tick));
19951997   m_clock_timer->adjust(attotime::from_seconds(1), 0, attotime::from_seconds(1));
19961998
trunk/src/mess/drivers/apple2gs.c
r17911r17912
409409ROM_END
410410
411411/*    YEAR  NAME      PARENT    COMPAT  MACHINE   INPUT       INIT      COMPANY            FULLNAME */
412COMP( 1989, apple2gs, 0,        apple2, apple2gs, apple2gs, driver_device,   0, "Apple Computer", "Apple IIgs (ROM03)", 0 )
412COMP( 1989, apple2gs, 0,        apple2, apple2gs, apple2gs, driver_device,   0, "Apple Computer", "Apple IIgs (ROM03)", GAME_SUPPORTS_SAVE )
413413COMP( 198?, apple2gsr3p, apple2gs, 0,   apple2gs, apple2gs, driver_device,   0, "Apple Computer", "Apple IIgs (ROM03 prototype)", GAME_NOT_WORKING )
414414COMP( 1989, apple2gsr3lp, apple2gs, 0,  apple2gs, apple2gs, driver_device,   0, "Apple Computer", "Apple IIgs (ROM03 late prototype?)", GAME_NOT_WORKING )
415COMP( 1987, apple2gsr1, apple2gs, 0,    apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM01)", 0 )
416COMP( 1986, apple2gsr0, apple2gs, 0,    apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00)", 0 )
415COMP( 1987, apple2gsr1, apple2gs, 0,    apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM01)", GAME_SUPPORTS_SAVE )
416COMP( 1986, apple2gsr0, apple2gs, 0,    apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00)", GAME_SUPPORTS_SAVE )
417

Previous 199869 Revisions Next


© 1997-2024 The MAME Team