summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/chaknpop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/chaknpop.cpp')
-rw-r--r--src/mame/drivers/chaknpop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/chaknpop.cpp b/src/mame/drivers/chaknpop.cpp
index 4dff0f6c168..72fc704d560 100644
--- a/src/mame/drivers/chaknpop.cpp
+++ b/src/mame/drivers/chaknpop.cpp
@@ -125,7 +125,7 @@ Notes:
***************************************************************************/
-READ8_MEMBER(chaknpop_state::mcu_status_r)
+uint8_t chaknpop_state::mcu_status_r()
{
// bit 0 = when 1, MCU is ready to receive data from main CPU
// bit 1 = when 1, MCU has sent data to the main CPU
@@ -149,7 +149,7 @@ void chaknpop_state::unknown_port_3_w(uint8_t data)
//logerror("%s: write to unknown port 3: 0x%02x\n", machine().describe_context(), data);
}
-WRITE8_MEMBER(chaknpop_state::coinlock_w)
+void chaknpop_state::coinlock_w(uint8_t data)
{
logerror("%04x: coin lock %sable\n", m_maincpu->pc(), data ? "dis" : "en");
}