mirror of
https://github.com/holub/mame
synced 2025-05-20 20:58:51 +03:00
mt bug 4156 fix
This commit is contained in:
parent
64407a4487
commit
a9c6719620
@ -338,10 +338,12 @@ MACHINE_RESET( seibu_sound )
|
|||||||
sound_cpu = machine->device("audiocpu");
|
sound_cpu = machine->device("audiocpu");
|
||||||
update_irq_lines(machine, VECTOR_INIT);
|
update_irq_lines(machine, VECTOR_INIT);
|
||||||
if (romlength > 0x10000)
|
if (romlength > 0x10000)
|
||||||
|
{
|
||||||
memory_configure_bank(machine, "bank1", 0, (romlength - 0x10000) / 0x8000, rom + 0x10000, 0x8000);
|
memory_configure_bank(machine, "bank1", 0, (romlength - 0x10000) / 0x8000, rom + 0x10000, 0x8000);
|
||||||
|
|
||||||
/* Denjin Makai definitely needs this at start-up, it never writes to the bankswitch */
|
/* Denjin Makai definitely needs this at start-up, it never writes to the bankswitch */
|
||||||
memory_set_bank(machine, "bank1", 0);
|
memory_set_bank(machine, "bank1", 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user