trunk/src/mess/machine/apple2gs.c
| r17911 | r17912 | |
| 1949 | 1949 | state_save_register_item_pointer(machine(), "APPLE2GS_RAM", NULL, 0, ram, machine().device<ram_device>(RAM_TAG)->size()); |
| 1950 | 1950 | |
| 1951 | 1951 | state_save_register_item(machine(), "NEWVIDEO", NULL, 0, m_newvideo); |
| 1952 | | |
| 1952 | state_save_register_item(machine(), "BORDERCOLOR", NULL, 0, m_bordercolor); |
| 1953 | 1953 | state_save_register_item(machine(), "VGCINT", NULL,0, m_vgcint); |
| 1954 | 1954 | state_save_register_item(machine(), "LANGSEL", NULL,0, m_langsel); |
| 1955 | 1955 | state_save_register_item(machine(), "SLTROMSEL", NULL,0, m_sltromsel); |
| r17911 | r17912 | |
| 1991 | 1991 | state_save_register_item(machine(), "SNDGLUADDR", NULL,0, m_sndglu_addr); |
| 1992 | 1992 | state_save_register_item(machine(), "SNDGLUDUMMYRD", NULL,0, m_sndglu_dummy_read); |
| 1993 | 1993 | |
| 1994 | state_save_register_item(machine(), "ECHOBANK", NULL,0, m_echo_bank); |
| 1995 | |
| 1994 | 1996 | m_clock_timer = machine().scheduler().timer_alloc(FUNC(apple2gs_clock_tick)); |
| 1995 | 1997 | m_clock_timer->adjust(attotime::from_seconds(1), 0, attotime::from_seconds(1)); |
| 1996 | 1998 | |
trunk/src/mess/drivers/apple2gs.c
| r17911 | r17912 | |
| 409 | 409 | ROM_END |
| 410 | 410 | |
| 411 | 411 | /* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME */ |
| 412 | | COMP( 1989, apple2gs, 0, apple2, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03)", 0 ) |
| 412 | COMP( 1989, apple2gs, 0, apple2, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03)", GAME_SUPPORTS_SAVE ) |
| 413 | 413 | COMP( 198?, apple2gsr3p, apple2gs, 0, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03 prototype)", GAME_NOT_WORKING ) |
| 414 | 414 | COMP( 1989, apple2gsr3lp, apple2gs, 0, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03 late prototype?)", GAME_NOT_WORKING ) |
| 415 | | COMP( 1987, apple2gsr1, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM01)", 0 ) |
| 416 | | COMP( 1986, apple2gsr0, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00)", 0 ) |
| 415 | COMP( 1987, apple2gsr1, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM01)", GAME_SUPPORTS_SAVE ) |
| 416 | COMP( 1986, apple2gsr0, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00)", GAME_SUPPORTS_SAVE ) |
| 417 | |