summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/shootout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/shootout.cpp')
-rw-r--r--src/mame/drivers/shootout.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/shootout.cpp b/src/mame/drivers/shootout.cpp
index 621acb75eb9..6d52cc99338 100644
--- a/src/mame/drivers/shootout.cpp
+++ b/src/mame/drivers/shootout.cpp
@@ -103,7 +103,7 @@ WRITE8_MEMBER(shootout_state::coincounter_w)
/*******************************************************************************/
-static ADDRESS_MAP_START( shootout_map, AS_PROGRAM, 8, shootout_state )
+ADDRESS_MAP_START(shootout_state::shootout_map)
AM_RANGE(0x0000, 0x0fff) AM_RAM
AM_RANGE(0x1000, 0x1000) AM_READ_PORT("DSW1") AM_WRITE(bankswitch_w)
AM_RANGE(0x1001, 0x1001) AM_READ_PORT("P1") AM_WRITE(flipscreen_w)
@@ -117,7 +117,7 @@ static ADDRESS_MAP_START( shootout_map, AS_PROGRAM, 8, shootout_state )
AM_RANGE(0x8000, 0xffff) AM_ROM AM_REGION("maincpu", 0x0000)
ADDRESS_MAP_END
-static ADDRESS_MAP_START( shootouj_map, AS_PROGRAM, 8, shootout_state )
+ADDRESS_MAP_START(shootout_state::shootouj_map)
AM_RANGE(0x0000, 0x0fff) AM_RAM
AM_RANGE(0x1000, 0x1000) AM_READ_PORT("DSW1")
AM_RANGE(0x1001, 0x1001) AM_READ_PORT("P1")
@@ -136,7 +136,7 @@ ADDRESS_MAP_END
/*******************************************************************************/
/* same as Tryout */
-static ADDRESS_MAP_START( shootout_sound_map, AS_PROGRAM, 8, shootout_state )
+ADDRESS_MAP_START(shootout_state::shootout_sound_map)
AM_RANGE(0x0000, 0x07ff) AM_RAM
AM_RANGE(0x4000, 0x4001) AM_DEVREADWRITE("ymsnd", ym2203_device, read, write)
AM_RANGE(0xa000, 0xa000) AM_READ(sound_cpu_command_r)