mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
Sigh
This commit is contained in:
parent
e03c4b7367
commit
9076aa1b02
@ -281,7 +281,6 @@ static const ym2203_interface ym2203_config =
|
|||||||
|
|
||||||
static MACHINE_START( blktiger )
|
static MACHINE_START( blktiger )
|
||||||
{
|
{
|
||||||
printf("machine_start_start\n"); fflush(stdout);
|
|
||||||
blktiger_state *state = machine->driver_data<blktiger_state>();
|
blktiger_state *state = machine->driver_data<blktiger_state>();
|
||||||
|
|
||||||
state->audiocpu = machine->device("audiocpu");
|
state->audiocpu = machine->device("audiocpu");
|
||||||
@ -299,12 +298,10 @@ static MACHINE_START( blktiger )
|
|||||||
state_save_register_global(machine, state->i8751_latch);
|
state_save_register_global(machine, state->i8751_latch);
|
||||||
state_save_register_global_array(machine, state->scroll_x);
|
state_save_register_global_array(machine, state->scroll_x);
|
||||||
state_save_register_global_array(machine, state->scroll_y);
|
state_save_register_global_array(machine, state->scroll_y);
|
||||||
printf("machine_start_end\n"); fflush(stdout);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static MACHINE_RESET( blktiger )
|
static MACHINE_RESET( blktiger )
|
||||||
{
|
{
|
||||||
printf("machine_reset_start\n"); fflush(stdout);
|
|
||||||
blktiger_state *state = machine->driver_data<blktiger_state>();
|
blktiger_state *state = machine->driver_data<blktiger_state>();
|
||||||
|
|
||||||
/* configure bankswitching */
|
/* configure bankswitching */
|
||||||
@ -318,7 +315,6 @@ static MACHINE_RESET( blktiger )
|
|||||||
state->screen_layout = 0;
|
state->screen_layout = 0;
|
||||||
state->z80_latch = 0;
|
state->z80_latch = 0;
|
||||||
state->i8751_latch = 0;
|
state->i8751_latch = 0;
|
||||||
printf("machine_reset_end\n"); fflush(stdout);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static MACHINE_CONFIG_START( blktiger, blktiger_state )
|
static MACHINE_CONFIG_START( blktiger, blktiger_state )
|
||||||
|
Loading…
Reference in New Issue
Block a user