summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esh.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-04-11 23:29:02 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-04-11 23:29:02 +0000
commitd2812cfea3fc2709b9b52525029f38838ce48530 (patch)
tree66c3b0d626d6ccadcaa495ad6174d54044aadf67 /src/mame/drivers/esh.c
parent5352ec77d86789680dde19c8262c69c2d98249a9 (diff)
Validity fixes.
Diffstat (limited to 'src/mame/drivers/esh.c')
-rw-r--r--src/mame/drivers/esh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/esh.c b/src/mame/drivers/esh.c
index c795b2043db..f1804939b2c 100644
--- a/src/mame/drivers/esh.c
+++ b/src/mame/drivers/esh.c
@@ -35,7 +35,7 @@ public:
: driver_device(mconfig, type, tag),
m_laserdisc(*this, "laserdisc") ,
m_tile_ram(*this, "tile_ram"),
- m_tile_control_ram(*this, "tile_control_ram"){ }
+ m_tile_control_ram(*this, "tile_ctrl_ram"){ }
required_device<pioneer_ldv1000_device> m_laserdisc;
required_shared_ptr<UINT8> m_tile_ram;
@@ -160,7 +160,7 @@ static ADDRESS_MAP_START( z80_0_mem, AS_PROGRAM, 8, esh_state )
AM_RANGE(0x0000,0x3fff) AM_ROM
AM_RANGE(0xe000,0xe7ff) AM_RAM AM_SHARE("nvram")
AM_RANGE(0xf000,0xf3ff) AM_RAM AM_SHARE("tile_ram")
- AM_RANGE(0xf400,0xf7ff) AM_RAM AM_SHARE("tile_control_ram")
+ AM_RANGE(0xf400,0xf7ff) AM_RAM AM_SHARE("tile_ctrl_ram")
ADDRESS_MAP_END