summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/gauntlet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gauntlet.cpp')
-rw-r--r--src/mame/drivers/gauntlet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gauntlet.cpp b/src/mame/drivers/gauntlet.cpp
index 262db998c7f..6ad6c2c6e57 100644
--- a/src/mame/drivers/gauntlet.cpp
+++ b/src/mame/drivers/gauntlet.cpp
@@ -272,7 +272,7 @@ WRITE8_MEMBER(gauntlet_state::mixer_w)
*************************************/
/* full map verified from schematics */
-static ADDRESS_MAP_START( main_map, AS_PROGRAM, 16, gauntlet_state )
+ADDRESS_MAP_START(gauntlet_state::main_map)
ADDRESS_MAP_UNMAP_HIGH
AM_RANGE(0x000000, 0x037fff) AM_MIRROR(0x280000) AM_ROM
AM_RANGE(0x038000, 0x03ffff) AM_MIRROR(0x280000) AM_ROM /* slapstic maps here */
@@ -313,7 +313,7 @@ ADDRESS_MAP_END
*************************************/
/* full map verified from schematics */
-static ADDRESS_MAP_START( sound_map, AS_PROGRAM, 8, gauntlet_state )
+ADDRESS_MAP_START(gauntlet_state::sound_map)
ADDRESS_MAP_UNMAP_HIGH
AM_RANGE(0x0000, 0x0fff) AM_MIRROR(0x2000) AM_RAM
AM_RANGE(0x1000, 0x100f) AM_MIRROR(0x27c0) AM_DEVWRITE("soundcomm", atari_sound_comm_device, sound_response_w)