summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kickgoal.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-18 16:42:55 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-18 16:42:55 +0200
commit4cde7dd08217aee98061f28a1ab263b3d4971418 (patch)
tree449d5556625a0242bca38326e2e90174e1d8bb09 /src/mame/drivers/kickgoal.cpp
parent524846ad9dd92dd31b3c1175746d9ae53c7cd1da (diff)
further macro removal work (nw)
Diffstat (limited to 'src/mame/drivers/kickgoal.cpp')
-rw-r--r--src/mame/drivers/kickgoal.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/kickgoal.cpp b/src/mame/drivers/kickgoal.cpp
index f45a6b56232..09583aeb2cc 100644
--- a/src/mame/drivers/kickgoal.cpp
+++ b/src/mame/drivers/kickgoal.cpp
@@ -351,7 +351,7 @@ void kickgoal_state::oki_map(address_map &map)
}
-WRITE8_MEMBER(kickgoal_state::soundio_port_a_w)
+void kickgoal_state::soundio_port_a_w(uint8_t data)
{
// only time this ever gets a different value is the high score name entry, these banks are correct based on sample positions
switch (data)
@@ -362,23 +362,23 @@ WRITE8_MEMBER(kickgoal_state::soundio_port_a_w)
}
}
-READ8_MEMBER(kickgoal_state::soundio_port_b_r)
+uint8_t kickgoal_state::soundio_port_b_r()
{
return m_pic_portb;
}
-WRITE8_MEMBER(kickgoal_state::soundio_port_b_w)
+void kickgoal_state::soundio_port_b_w(uint8_t data)
{
m_pic_portb = data;
}
-READ8_MEMBER(kickgoal_state::soundio_port_c_r)
+uint8_t kickgoal_state::soundio_port_c_r()
{
// 0x20 = sound command ready?
return (m_pic_portc & ~0x20) | m_sound_command_sent;
}
-WRITE8_MEMBER(kickgoal_state::soundio_port_c_w)
+void kickgoal_state::soundio_port_c_w(uint8_t data)
{
if ((data & 0x10) != (m_pic_portc & 0x10))
{