summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/jollyjgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jollyjgr.cpp')
-rw-r--r--src/mame/drivers/jollyjgr.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/jollyjgr.cpp b/src/mame/drivers/jollyjgr.cpp
index f9f5a76a2e9..4d3892a5ac9 100644
--- a/src/mame/drivers/jollyjgr.cpp
+++ b/src/mame/drivers/jollyjgr.cpp
@@ -176,6 +176,8 @@ public:
required_device<palette_device> m_bm_palette;
void fspider(machine_config &config);
void jollyjgr(machine_config &config);
+ void fspider_map(address_map &map);
+ void jollyjgr_map(address_map &map);
};
@@ -239,7 +241,7 @@ WRITE8_MEMBER(jollyjgr_state::jollyjgr_coin_lookout_w)
*
*************************************/
-static ADDRESS_MAP_START( jollyjgr_map, AS_PROGRAM, 8, jollyjgr_state )
+ADDRESS_MAP_START(jollyjgr_state::jollyjgr_map)
AM_RANGE(0x0000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x87ff) AM_RAM
AM_RANGE(0x8ff8, 0x8ff8) AM_READ_PORT("DSW1")
@@ -256,7 +258,7 @@ static ADDRESS_MAP_START( jollyjgr_map, AS_PROGRAM, 8, jollyjgr_state )
AM_RANGE(0xa000, 0xffff) AM_RAM AM_SHARE("bitmap")
ADDRESS_MAP_END
-static ADDRESS_MAP_START( fspider_map, AS_PROGRAM, 8, jollyjgr_state )
+ADDRESS_MAP_START(jollyjgr_state::fspider_map)
AM_RANGE(0x0000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x87ff) AM_RAM
AM_RANGE(0x8ff8, 0x8ff8) AM_READ_PORT("DSW1")