summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/memory.c')
-rw-r--r--src/emu/memory.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/memory.c b/src/emu/memory.c
index 5e2e36642b7..cf7e713d4d7 100644
--- a/src/emu/memory.c
+++ b/src/emu/memory.c
@@ -934,8 +934,8 @@ private:
if (m_space.log_unmap() && !m_space.debugger_access())
logerror("%s: unmapped %s memory read from %s & %s\n",
m_space.machine().describe_context(), m_space.name(),
- core_i64_hex_format(m_space.byte_to_address(offset * sizeof(_UintType)), m_space.addrchars()),
- core_i64_hex_format(mask, 2 * sizeof(_UintType)));
+ core_i64_format(m_space.byte_to_address(offset * sizeof(_UintType)), m_space.addrchars(),m_space.machine().is_octal()),
+ core_i64_format(mask, 2 * sizeof(_UintType),m_space.machine().is_octal()));
return m_space.unmap();
}
@@ -1000,9 +1000,9 @@ private:
if (m_space.log_unmap() && !m_space.debugger_access())
logerror("%s: unmapped %s memory write to %s = %s & %s\n",
m_space.machine().describe_context(), m_space.name(),
- core_i64_hex_format(m_space.byte_to_address(offset * sizeof(_UintType)), m_space.addrchars()),
- core_i64_hex_format(data, 2 * sizeof(_UintType)),
- core_i64_hex_format(mask, 2 * sizeof(_UintType)));
+ core_i64_format(m_space.byte_to_address(offset * sizeof(_UintType)), m_space.addrchars(),m_space.machine().is_octal()),
+ core_i64_format(data, 2 * sizeof(_UintType),m_space.machine().is_octal()),
+ core_i64_format(mask, 2 * sizeof(_UintType),m_space.machine().is_octal()));
}
template<typename _UintType>