summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/t5182.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/t5182.cpp')
-rw-r--r--src/mame/audio/t5182.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/audio/t5182.cpp b/src/mame/audio/t5182.cpp
index cdeb8a9ed2e..93726634dcb 100644
--- a/src/mame/audio/t5182.cpp
+++ b/src/mame/audio/t5182.cpp
@@ -358,11 +358,11 @@ void t5182_device::t5182_io(address_map &map)
{
map.global_mask(0xff);
map(0x00, 0x01).rw(":ymsnd", FUNC(ym2151_device::read), FUNC(ym2151_device::write));
- map(0x10, 0x10).w(this, FUNC(t5182_device::sharedram_semaphore_snd_acquire_w));
- map(0x11, 0x11).w(this, FUNC(t5182_device::sharedram_semaphore_snd_release_w));
- map(0x12, 0x12).w(this, FUNC(t5182_device::ym2151_irq_ack_w));
- map(0x13, 0x13).w(this, FUNC(t5182_device::cpu_irq_ack_w));
- map(0x20, 0x20).r(this, FUNC(t5182_device::sharedram_semaphore_main_r));
+ map(0x10, 0x10).w(FUNC(t5182_device::sharedram_semaphore_snd_acquire_w));
+ map(0x11, 0x11).w(FUNC(t5182_device::sharedram_semaphore_snd_release_w));
+ map(0x12, 0x12).w(FUNC(t5182_device::ym2151_irq_ack_w));
+ map(0x13, 0x13).w(FUNC(t5182_device::cpu_irq_ack_w));
+ map(0x20, 0x20).r(FUNC(t5182_device::sharedram_semaphore_main_r));
map(0x30, 0x30).portr("T5182_COIN");
}