summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/indy_indigo2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/indy_indigo2.cpp')
-rw-r--r--src/mame/drivers/indy_indigo2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/indy_indigo2.cpp b/src/mame/drivers/indy_indigo2.cpp
index 89eed7ae805..a0da4719e65 100644
--- a/src/mame/drivers/indy_indigo2.cpp
+++ b/src/mame/drivers/indy_indigo2.cpp
@@ -665,6 +665,7 @@ public:
void ip225015(machine_config &config);
void ip224613(machine_config &config);
void ip244415(machine_config &config);
+ void ip225015_map(address_map &map);
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
@@ -1165,7 +1166,7 @@ WRITE32_MEMBER(ip22_state::hpc3_unkpbus0_w)
//COMBINE_DATA(&m_unkpbus0[offset]);
}
-static ADDRESS_MAP_START( ip225015_map, AS_PROGRAM, 32, ip22_state )
+ADDRESS_MAP_START(ip22_state::ip225015_map)
AM_RANGE( 0x00000000, 0x0007ffff ) AM_RAMBANK( "bank1" ) /* mirror of first 512k of main RAM */
AM_RANGE( 0x08000000, 0x0fffffff ) AM_SHARE("mainram") AM_RAM_WRITE(ip22_write_ram) /* 128 MB of main RAM */
AM_RANGE( 0x1f0f0000, 0x1f0f1fff ) AM_DEVREADWRITE("newport", newport_video_device, rex3_r, rex3_w )