Example #1
0
MACHINE_START_MEMBER(mephisto_state,mm2)
{
	m_lcd_shift_counter = 3;
	m_led7=0xff;

	mboard_savestate_register();
}
Example #2
0
static MACHINE_START( mephisto )
{
	mephisto_state *state = machine.driver_data<mephisto_state>();
	state->m_lcd_shift_counter = 3;
	state->m_allowNMI = 1;
	mboard_savestate_register(machine);
}
Example #3
0
static MACHINE_START( mm2 )
{
	mephisto_state *state = machine.driver_data<mephisto_state>();
	state->m_lcd_shift_counter = 3;
	state->m_led7=0xff;

	mboard_savestate_register(machine);
}
Example #4
0
void mephisto_state::machine_start()
{
	m_lcd_shift_counter = 3;
	m_allowNMI = 1;
	mboard_savestate_register();
}