mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
ksys574.cpp: Save additional DDR stage state members.
This commit is contained in:
parent
80f3318e7c
commit
3f2cd1fbd0
1 changed files with 5 additions and 0 deletions
|
@ -1611,6 +1611,11 @@ void ddr_state::machine_start()
|
|||
m_stage_mask = 0xffffffff;
|
||||
|
||||
save_item(NAME(m_stage_mask));
|
||||
save_item(STRUCT_MEMBER(m_stage_state, D0));
|
||||
save_item(STRUCT_MEMBER(m_stage_state, clk));
|
||||
save_item(STRUCT_MEMBER(m_stage_state, shift));
|
||||
save_item(STRUCT_MEMBER(m_stage_state, state));
|
||||
save_item(STRUCT_MEMBER(m_stage_state, bit));
|
||||
}
|
||||
|
||||
void ddr_state::init_ddr()
|
||||
|
|
Loading…
Reference in a new issue