summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/prof80mmu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/prof80mmu.cpp')
-rw-r--r--src/mame/machine/prof80mmu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/prof80mmu.cpp b/src/mame/machine/prof80mmu.cpp
index bf6d7044e08..0c9437aa0b0 100644
--- a/src/mame/machine/prof80mmu.cpp
+++ b/src/mame/machine/prof80mmu.cpp
@@ -20,7 +20,7 @@ DEFINE_DEVICE_TYPE(PROF80_MMU, prof80_mmu_device, "prof80_mmu", "PROF80 MMU")
void prof80_mmu_device::z80_program_map(address_map &map)
{
- map(0x0000, 0xffff).rw(this, FUNC(prof80_mmu_device::program_r), FUNC(prof80_mmu_device::program_w));
+ map(0x0000, 0xffff).rw(FUNC(prof80_mmu_device::program_r), FUNC(prof80_mmu_device::program_w));
}
void prof80_mmu_device::program_map(address_map &map)