summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taotaido.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taotaido.cpp')
-rw-r--r--src/mame/drivers/taotaido.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taotaido.cpp b/src/mame/drivers/taotaido.cpp
index 74bef03ac7e..0dc5e540e24 100644
--- a/src/mame/drivers/taotaido.cpp
+++ b/src/mame/drivers/taotaido.cpp
@@ -84,7 +84,7 @@ void taotaido_state::machine_start()
}
-READ16_MEMBER(taotaido_state::pending_command_r)
+uint16_t taotaido_state::pending_command_r()
{
/* Only bit 0 is tested */
return m_soundlatch->pending_r();
@@ -119,7 +119,7 @@ void taotaido_state::main_map(address_map &map)
/* sound cpu - same as aerofgt */
-WRITE8_MEMBER(taotaido_state::sh_bankswitch_w)
+void taotaido_state::sh_bankswitch_w(uint8_t data)
{
m_soundbank->set_entry(data & 0x03);
}