summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/overdriv.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-04 08:58:06 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-04 09:00:36 +0100
commitd8b8d945eddf359c40b2a0e6fab88212327fa58a (patch)
tree45c87a927284a76f1c848246cd8a940d1009f63c /src/mame/drivers/overdriv.cpp
parentc3530cdebe6515f85f9b3a9318eadb266aa60898 (diff)
Ch-ch-ch-ch-ch-checkpoint... (nw)
Diffstat (limited to 'src/mame/drivers/overdriv.cpp')
-rw-r--r--src/mame/drivers/overdriv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/overdriv.cpp b/src/mame/drivers/overdriv.cpp
index 094afd7b69f..5c54dfb3778 100644
--- a/src/mame/drivers/overdriv.cpp
+++ b/src/mame/drivers/overdriv.cpp
@@ -60,7 +60,7 @@ static const uint16_t overdriv_default_eeprom[64] =
WRITE16_MEMBER(overdriv_state::eeprom_w)
{
-//logerror("%06x: write %04x to eeprom_w\n",space.device().safe_pc(),data);
+//logerror("%s: write %04x to eeprom_w\n",machine.describe_context(),data);
if (ACCESSING_BITS_0_7)
{
/* bit 0 is data */
@@ -112,7 +112,7 @@ WRITE16_MEMBER(overdriv_state::cpuA_ctrl_w)
machine().bookkeeping().coin_counter_w(0, data & 0x10);
machine().bookkeeping().coin_counter_w(1, data & 0x20);
-//logerror("%06x: write %04x to cpuA_ctrl_w\n",space.device().safe_pc(),data);
+//logerror("%s: write %04x to cpuA_ctrl_w\n",machine().describe_context(),data);
}
}