summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/nmk004.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/nmk004.cpp')
-rw-r--r--src/mame/machine/nmk004.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/nmk004.cpp b/src/mame/machine/nmk004.cpp
index fa49c5ae9d2..bc3ac8c0d1a 100644
--- a/src/mame/machine/nmk004.cpp
+++ b/src/mame/machine/nmk004.cpp
@@ -71,10 +71,10 @@ void nmk004_device::nmk004_sound_mem_map(address_map &map)
map(0xf800, 0xf801).rw(":ymsnd", FUNC(ym2203_device::read), FUNC(ym2203_device::write));
map(0xf900, 0xf900).rw(":oki1", FUNC(okim6295_device::read), FUNC(okim6295_device::write));
map(0xfa00, 0xfa00).rw(":oki2", FUNC(okim6295_device::read), FUNC(okim6295_device::write));
- map(0xfb00, 0xfb00).r(this, FUNC(nmk004_device::nmk004_tonmk004_r)); // from main cpu
- map(0xfc00, 0xfc00).w(this, FUNC(nmk004_device::nmk004_tomain_w)); // to main cpu
- map(0xfc01, 0xfc01).w(this, FUNC(nmk004_device::nmk004_oki0_bankswitch_w));
- map(0xfc02, 0xfc02).w(this, FUNC(nmk004_device::nmk004_oki1_bankswitch_w));
+ map(0xfb00, 0xfb00).r(FUNC(nmk004_device::nmk004_tonmk004_r)); // from main cpu
+ map(0xfc00, 0xfc00).w(FUNC(nmk004_device::nmk004_tomain_w)); // to main cpu
+ map(0xfc01, 0xfc01).w(FUNC(nmk004_device::nmk004_oki0_bankswitch_w));
+ map(0xfc02, 0xfc02).w(FUNC(nmk004_device::nmk004_oki1_bankswitch_w));
}