summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namcoio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namcoio.cpp')
-rw-r--r--src/mame/machine/namcoio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/namcoio.cpp b/src/mame/machine/namcoio.cpp
index a575b2ad217..2eaa9079f31 100644
--- a/src/mame/machine/namcoio.cpp
+++ b/src/mame/machine/namcoio.cpp
@@ -476,7 +476,7 @@ READ8_MEMBER( namcoio_device::read )
// RAM is 4-bit wide; Pac & Pal requires the | 0xf0 otherwise Easter egg doesn't work
offset &= 0x3f;
-// LOG("%s: I/O read: mode %d, offset %d = %02x\n", machine().describe_context(), space.device().safe_pc(), offset / 16, namcoio_ram[(offset & 0x30) + 8], offset & 0x0f, namcoio_ram[offset]&0x0f);
+// LOG("%s: I/O read: mode %d, offset %d = %02x\n", machine().describe_context(), offset / 16, namcoio_ram[(offset & 0x30) + 8], offset & 0x0f, namcoio_ram[offset]&0x0f);
return 0xf0 | m_ram[offset];
}