summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mermaid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mermaid.cpp')
-rw-r--r--src/mame/drivers/mermaid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mermaid.cpp b/src/mame/drivers/mermaid.cpp
index f213e883de8..b8fff594330 100644
--- a/src/mame/drivers/mermaid.cpp
+++ b/src/mame/drivers/mermaid.cpp
@@ -126,13 +126,13 @@ Stephh's notes (based on the games Z80 code and some tests) :
/* Read/Write Handlers */
-WRITE8_MEMBER(mermaid_state::mermaid_ay8910_write_port_w)
+void mermaid_state::mermaid_ay8910_write_port_w(uint8_t data)
{
if (m_ay8910_enable[0]) m_ay8910[0]->data_w(data);
if (m_ay8910_enable[1]) m_ay8910[1]->data_w(data);
}
-WRITE8_MEMBER(mermaid_state::mermaid_ay8910_control_port_w)
+void mermaid_state::mermaid_ay8910_control_port_w(uint8_t data)
{
if (m_ay8910_enable[0]) m_ay8910[0]->address_w(data);
if (m_ay8910_enable[1]) m_ay8910[1]->address_w(data);