summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/videopkr.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-02-15 16:04:20 +0900
committer cam900 <dbtlrchl@naver.com>2019-02-15 16:04:20 +0900
commitc7b8147628e2e403ef3c16b67ebb8394dc11f576 (patch)
tree7d43341486b9a92eedfe34b0f852347075af7eac /src/mame/drivers/videopkr.cpp
parent98657cf5d35d6a6141e8aac539e46d4389c3dd3b (diff)
ay8910.cpp : Updates
Use shorter / correct type values, Remove unnecessary arguments in handlers, Duplicates device/bus/coco/cococart.cpp : Allow various types of delegates for install handler 5clown.cpp : Remove unnecessary arguments in some handler kchamp.cpp : Remove unnecessary arguments in some handler
Diffstat (limited to 'src/mame/drivers/videopkr.cpp')
-rw-r--r--src/mame/drivers/videopkr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/videopkr.cpp b/src/mame/drivers/videopkr.cpp
index dcda035ae20..9e3dcb259e2 100644
--- a/src/mame/drivers/videopkr.cpp
+++ b/src/mame/drivers/videopkr.cpp
@@ -911,11 +911,11 @@ WRITE8_MEMBER(videopkr_state::baby_sound_p3_w)
case 0x00: break;
case 0x01: break;
case 0x02: break;
- case 0x03: m_aysnd->data_w(space, 1, m_sbp0); break;
+ case 0x03: m_aysnd->data_w(m_sbp0); break;
case 0x04: break;
- case 0x05: m_sbp0 = m_aysnd->data_r(space, m_sbp0); break;
+ case 0x05: m_sbp0 = m_aysnd->data_r(); break;
case 0x06: break;
- case 0x07: m_aysnd->address_w(space, 0, m_sbp0); break;
+ case 0x07: m_aysnd->address_w(m_sbp0); break;
}
}