nec cpu: add missing items to save state [Alex Jackson]

This commit is contained in:
Alex W. Jackson 2014-07-09 16:02:33 +00:00
parent 95ee97467e
commit bbfe92080f
2 changed files with 6 additions and 0 deletions

View File

@ -396,7 +396,10 @@ void nec_common_device::device_start()
save_item(NAME(m_nmi_state));
save_item(NAME(m_irq_state));
save_item(NAME(m_poll_state));
save_item(NAME(m_no_interrupt));
save_item(NAME(m_halted));
save_item(NAME(m_prefetch_count));
save_item(NAME(m_prefetch_reset));
m_program = &space(AS_PROGRAM);
m_direct = &m_program->direct();

View File

@ -480,6 +480,7 @@ void v25_common_device::device_start()
save_item(NAME(m_irq_state));
save_item(NAME(m_poll_state));
save_item(NAME(m_mode_state));
save_item(NAME(m_no_interrupt));
save_item(NAME(m_halted));
save_item(NAME(m_TM0));
save_item(NAME(m_MD0));
@ -491,6 +492,8 @@ void v25_common_device::device_start()
save_item(NAME(m_TB));
save_item(NAME(m_PCK));
save_item(NAME(m_IDB));
save_item(NAME(m_prefetch_count));
save_item(NAME(m_prefetch_reset));
m_program = &space(AS_PROGRAM);
m_direct = &m_program->direct();