summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gaelco_ds5002fp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/gaelco_ds5002fp.cpp')
-rw-r--r--src/mame/machine/gaelco_ds5002fp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/gaelco_ds5002fp.cpp b/src/mame/machine/gaelco_ds5002fp.cpp
index 7b863bc4e7a..3d20bdd3f82 100644
--- a/src/mame/machine/gaelco_ds5002fp.cpp
+++ b/src/mame/machine/gaelco_ds5002fp.cpp
@@ -16,7 +16,7 @@ void gaelco_ds5002fp_device::dallas_rom(address_map &map)
void gaelco_ds5002fp_device::dallas_ram(address_map &map)
{
- map(0x00000, 0x0ffff).rw(this, FUNC(gaelco_ds5002fp_device::hostmem_r), FUNC(gaelco_ds5002fp_device::hostmem_w));
+ map(0x00000, 0x0ffff).rw(FUNC(gaelco_ds5002fp_device::hostmem_r), FUNC(gaelco_ds5002fp_device::hostmem_w));
map(0x10000, 0x17fff).ram().share("sram"); // yes, the games access it as data and use it for temporary storage!!
}