summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drivers/testcpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/drivers/testcpu.cpp')
-rw-r--r--src/emu/drivers/testcpu.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/drivers/testcpu.cpp b/src/emu/drivers/testcpu.cpp
index 64f24b729ce..6493471df4c 100644
--- a/src/emu/drivers/testcpu.cpp
+++ b/src/emu/drivers/testcpu.cpp
@@ -164,6 +164,7 @@ public:
void testcpu(machine_config &config);
+ void ppc_mem(address_map &map);
private:
// internal state
required_device<ppc603e_device> m_cpu;
@@ -177,7 +178,7 @@ private:
// ADDRESS MAPS
//**************************************************************************
-static ADDRESS_MAP_START( ppc_mem, AS_PROGRAM, 64, testcpu_state )
+ADDRESS_MAP_START(testcpu_state::ppc_mem)
AM_RANGE(RAM_BASE, RAM_BASE+7) AM_RAM AM_SHARE("ram")
AM_RANGE(0x00000000, 0xffffffff) AM_READWRITE(general_r, general_w)
ADDRESS_MAP_END