pacman.cpp: restore maketrax save state support (nw)

This commit is contained in:
Ivan Vangelista 2018-01-09 19:30:58 +01:00
parent 52017df59d
commit 9196614a03

View File

@ -6861,6 +6861,10 @@ DRIVER_INIT_MEMBER(pacman_state,maketrax)
m_maincpu->space(AS_PROGRAM).install_write_handler(0x5004, 0x5004, write8_delegate(FUNC(pacman_state::maketrax_protection_w),this));
m_maincpu->space(AS_PROGRAM).install_read_handler(0x5080, 0x50bf, read8_delegate(FUNC(pacman_state::maketrax_special_port2_r),this));
m_maincpu->space(AS_PROGRAM).install_read_handler(0x50c0, 0x50ff, read8_delegate(FUNC(pacman_state::maketrax_special_port3_r),this));
save_item(NAME(m_maketrax_disable_protection));
save_item(NAME(m_maketrax_offset));
save_item(NAME(m_maketrax_counter));
}
void pacman_state::korosuke_rom_decode()