summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/comquest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/comquest.cpp')
-rw-r--r--src/mame/drivers/comquest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/comquest.cpp b/src/mame/drivers/comquest.cpp
index 78ee3a4f452..2418c7c4fd6 100644
--- a/src/mame/drivers/comquest.cpp
+++ b/src/mame/drivers/comquest.cpp
@@ -50,14 +50,14 @@ icq3250a-d
#ifdef UNUSED_FUNCTION
-READ8_MEMBER(comquest_state::comquest_read)
+uint8_t comquest_state::comquest_read(offs_t offset)
{
uint8_t data=0;
logerror("comquest read %.4x %.2x\n",offset,data);
return data;
}
-WRITE8_MEMBER(comquest_state::comquest_write)
+void comquest_state::comquest_write(offs_t offset, uint8_t data)
{
logerror("comquest read %.4x %.2x\n",offset,data);
}