summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/tms5220.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/tms5220.cpp')
-rw-r--r--src/devices/sound/tms5220.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/devices/sound/tms5220.cpp b/src/devices/sound/tms5220.cpp
index b9a45cabaa4..b0cf48a271a 100644
--- a/src/devices/sound/tms5220.cpp
+++ b/src/devices/sound/tms5220.cpp
@@ -2004,12 +2004,7 @@ WRITE8_MEMBER( tms5220_device::combined_rsq_wsq_w )
***********************************************************************************************/
-WRITE8_MEMBER( tms5220_device::data_w )
-{
- data_w(data);
-}
-
-void tms5220_device::data_w(uint8_t data)
+void tms5220_device::write_data(uint8_t data)
{
// prevent debugger from changing the internal state
if (machine().side_effects_disabled()) return;
@@ -2042,12 +2037,7 @@ void tms5220_device::data_w(uint8_t data)
***********************************************************************************************/
-READ8_MEMBER( tms5220_device::status_r )
-{
- return status_r();
-}
-
-uint8_t tms5220_device::status_r()
+uint8_t tms5220_device::read_status()
{
// prevent debugger from changing the internal state
if (machine().side_effects_disabled()) return 0;