mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00
Fixed unmap writes in core, not worth mentioning, just do any stylistical change if you want it.
This commit is contained in:
parent
b57c4c0360
commit
843e4de54a
@ -817,7 +817,7 @@ private:
|
|||||||
void unmap_w(address_space &space, offs_t offset, _UintType data, _UintType mask)
|
void unmap_w(address_space &space, offs_t offset, _UintType data, _UintType mask)
|
||||||
{
|
{
|
||||||
if (m_space.log_unmap() && !m_space.debugger_access())
|
if (m_space.log_unmap() && !m_space.debugger_access())
|
||||||
logerror("%s: unmapped %s memory write to %s\n", cpuexec_describe_context(&m_space.m_machine), m_space.name(), core_i64_hex_format(m_space.byte_to_address(offset), m_space.addrchars()));
|
logerror("%s: unmapped %s memory write to %s = %x & %x\n", cpuexec_describe_context(&m_space.m_machine), m_space.name(), core_i64_hex_format(m_space.byte_to_address(offset), m_space.addrchars()),(UINT32)data,(UINT32)mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename _UintType>
|
template<typename _UintType>
|
||||||
|
Loading…
Reference in New Issue
Block a user