summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/iris3130.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/iris3130.cpp')
-rw-r--r--src/mame/drivers/iris3130.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/iris3130.cpp b/src/mame/drivers/iris3130.cpp
index 981f654611c..e9b8cacc3e4 100644
--- a/src/mame/drivers/iris3130.cpp
+++ b/src/mame/drivers/iris3130.cpp
@@ -94,6 +94,7 @@ public:
DECLARE_WRITE_LINE_MEMBER(duartb_irq_handler);
required_device<cpu_device> m_maincpu;
void sgi_ip2(machine_config &config);
+ void sgi_ip2_map(address_map &map);
protected:
required_shared_ptr<uint32_t> m_mainram;
required_device<mc68681_device> m_duarta;
@@ -373,7 +374,7 @@ void sgi_ip2_state::machine_reset()
***************************************************************************/
-static ADDRESS_MAP_START(sgi_ip2_map, AS_PROGRAM, 32, sgi_ip2_state )
+ADDRESS_MAP_START(sgi_ip2_state::sgi_ip2_map)
AM_RANGE(0x00000000, 0x00ffffff) AM_RAM AM_SHARE("mainram")
AM_RANGE(0x02100000, 0x0210ffff) AM_RAM AM_SHARE("bss") // ??? I don't understand the need for this...
AM_RANGE(0x30000000, 0x30017fff) AM_ROM AM_REGION("maincpu", 0)