summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mpu2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mpu2.cpp')
-rw-r--r--src/mame/drivers/mpu2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/mpu2.cpp b/src/mame/drivers/mpu2.cpp
index 403414cf471..79164189700 100644
--- a/src/mame/drivers/mpu2.cpp
+++ b/src/mame/drivers/mpu2.cpp
@@ -50,13 +50,14 @@ public:
{ }
void mpu2(machine_config &config);
+ void mpu2_basemap(address_map &map);
protected:
// devices
required_device<cpu_device> m_maincpu;
};
-static ADDRESS_MAP_START( mpu2_basemap, AS_PROGRAM, 8, mpu2_state )
+ADDRESS_MAP_START(mpu2_state::mpu2_basemap)
ADDRESS_MAP_GLOBAL_MASK(0x3fff) // A14/A15 Not Connected
AM_RANGE(0x0000, 0x007f) AM_RAM
AM_RANGE(0x0800, 0x0fff) AM_ROM AM_REGION("romp1", 0)