mirror of
https://github.com/holub/mame
synced 2025-05-23 06:08:48 +03:00
Fix for MT03611: 1943, 1943j, 1943kai: Crash when starting 1943 in Service Mode
last 0x1000 bank was not configured
This commit is contained in:
parent
05b54eba55
commit
1d067133a7
@ -471,10 +471,10 @@ ROM_END
|
||||
static DRIVER_INIT( 1943 )
|
||||
{
|
||||
UINT8 *ROM = memory_region(machine, "maincpu");
|
||||
memory_configure_bank(machine, "bank1", 0, 28, &ROM[0x10000], 0x1000);
|
||||
memory_configure_bank(machine, "bank2", 0, 28, &ROM[0x11000], 0x1000);
|
||||
memory_configure_bank(machine, "bank3", 0, 28, &ROM[0x12000], 0x1000);
|
||||
memory_configure_bank(machine, "bank4", 0, 28, &ROM[0x13000], 0x1000);
|
||||
memory_configure_bank(machine, "bank1", 0, 29, &ROM[0x10000], 0x1000);
|
||||
memory_configure_bank(machine, "bank2", 0, 29, &ROM[0x11000], 0x1000);
|
||||
memory_configure_bank(machine, "bank3", 0, 29, &ROM[0x12000], 0x1000);
|
||||
memory_configure_bank(machine, "bank4", 0, 29, &ROM[0x13000], 0x1000);
|
||||
}
|
||||
|
||||
/* Game Drivers */
|
||||
|
Loading…
Reference in New Issue
Block a user