summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/overdriv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/overdriv.c')
-rw-r--r--src/mame/drivers/overdriv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/overdriv.c b/src/mame/drivers/overdriv.c
index f8f37fb36b4..2513f2710dd 100644
--- a/src/mame/drivers/overdriv.c
+++ b/src/mame/drivers/overdriv.c
@@ -64,7 +64,7 @@ static const eeprom_interface eeprom_intf =
WRITE16_MEMBER(overdriv_state::eeprom_w)
{
-//logerror("%06x: write %04x to eeprom_w\n",cpu_get_pc(&space.device()),data);
+//logerror("%06x: write %04x to eeprom_w\n",space.device().safe_pc(),data);
if (ACCESSING_BITS_0_7)
{
/* bit 0 is data */
@@ -109,7 +109,7 @@ WRITE16_MEMBER(overdriv_state::cpuA_ctrl_w)
coin_counter_w(machine(), 0, data & 0x10);
coin_counter_w(machine(), 1, data & 0x20);
-//logerror("%06x: write %04x to cpuA_ctrl_w\n",cpu_get_pc(&space.device()),data);
+//logerror("%06x: write %04x to cpuA_ctrl_w\n",space.device().safe_pc(),data);
}
}