Fixed unmap writes in core, not worth mentioning, just do any stylistical change if you want it.

This commit is contained in:
Angelo Salese 2010-08-21 15:53:43 +00:00
parent b57c4c0360
commit 843e4de54a

View File

@ -817,7 +817,7 @@ private:
void unmap_w(address_space &space, offs_t offset, _UintType data, _UintType mask)
{
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>