summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/legionna.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/legionna.c')
-rw-r--r--src/mame/drivers/legionna.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/legionna.c b/src/mame/drivers/legionna.c
index 29f62078ed3..d7373da40af 100644
--- a/src/mame/drivers/legionna.c
+++ b/src/mame/drivers/legionna.c
@@ -2188,7 +2188,7 @@ ROM_END
static DRIVER_INIT( cupsoc )
{
#if CUPSOC_DEBUG_MODE
- UINT16 *ROM = (UINT16 *)machine.region("maincpu")->base();
+ UINT16 *ROM = (UINT16 *)machine.root_device().memregion("maincpu")->base();
/*Press p1 button 3 to enter into debug mode during gameplay*/
ROM[0xffffb/2] = 0x0000;
@@ -2200,13 +2200,13 @@ static DRIVER_INIT( cupsoc )
static DRIVER_INIT( denjinmk )
{
/* problem with audio comms? */
- UINT16 *ROM = (UINT16 *)machine.region("maincpu")->base();
+ UINT16 *ROM = (UINT16 *)machine.root_device().memregion("maincpu")->base();
ROM[0x5fe4/2] = 0x4e71;
}
static DRIVER_INIT( legiongfx )
{
- descramble_legionnaire_gfx( machine, machine.region("gfx5")->base() );
+ descramble_legionnaire_gfx( machine, machine.root_device().memregion("gfx5")->base() );
}