// license:BSD-3-Clause // copyright-holders:Olivier Galibert #include "emu.h" #include "emumem_hea.h" #include "emumem_heun.h" template emu::detail::handler_entry_size_t handler_entry_read_unmapped::read(offs_t offset, uX mem_mask) const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory read from %0*o & %0*o\n" : "%s: unmapped %s memory read from %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, mem_mask); return this->m_space->unmap(); } template emu::detail::handler_entry_size_t handler_entry_read_unmapped::read_interruptible(offs_t offset, uX mem_mask) const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory read from %0*o & %0*o\n" : "%s: unmapped %s memory read from %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, mem_mask); return this->m_space->unmap(); } template std::pair, u16> handler_entry_read_unmapped::read_flags(offs_t offset, uX mem_mask) const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory read from %0*o & %0*o\n" : "%s: unmapped %s memory read from %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, mem_mask); return std::pair(this->m_space->unmap(), this->m_flags); } template u16 handler_entry_read_unmapped::lookup_flags(offs_t offset, uX mem_mask) const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory read flags lookup from %0*o & %0*o\n" : "%s: unmapped %s memory read flags lookup from %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, mem_mask); return this->m_flags; } template std::string handler_entry_read_unmapped::name() const { return "unmapped"; } template void handler_entry_write_unmapped::write(offs_t offset, uX data, uX mem_mask)const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory write to %0*o = %0*o & %0*o\n" : "%s: unmapped %s memory write to %0*X = %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, data, 2 << Width, mem_mask); } template void handler_entry_write_unmapped::write_interruptible(offs_t offset, uX data, uX mem_mask)const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory write to %0*o = %0*o & %0*o\n" : "%s: unmapped %s memory write to %0*X = %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, data, 2 << Width, mem_mask); } template u16 handler_entry_write_unmapped::write_flags(offs_t offset, uX data, uX mem_mask)const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s memory write to %0*o = %0*o & %0*o\n" : "%s: unmapped %s memory write to %0*X = %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, data, 2 << Width, mem_mask); return this->m_flags; } template u16 handler_entry_write_unmapped::lookup_flags(offs_t offset, uX mem_mask)const { if (this->m_space->log_unmap() && !this->m_space->m_manager.machine().side_effects_disabled()) this->m_space->device().logerror(this->m_space->is_octal() ? "%s: unmapped %s write flags lookup from %0*o & %0*o\n" : "%s: unmapped %s write flags lookup from %0*X & %0*X\n", this->m_space->m_manager.machine().describe_context(), this->m_space->name(), this->m_space->addrchars(), offset, 2 << Width, mem_mask); return this->m_flags; } template std::string handler_entry_write_unmapped::name() const { return "unmapped"; } template emu::detail::handler_entry_size_t handler_entry_read_nop::read(offs_t offset, uX mem_mask) const { return this->m_space->unmap(); } template emu::detail::handler_entry_size_t handler_entry_read_nop::read_interruptible(offs_t offset, uX mem_mask) const { return this->m_space->unmap(); } template std::pair, u16> handler_entry_read_nop::read_flags(offs_t offset, uX mem_mask) const { return std::pair(this->m_space->unmap(), this->m_flags); } template u16 handler_entry_read_nop::lookup_flags(offs_t offset, uX mem_mask) const { return this->m_flags; } template std::string handler_entry_read_nop::name() const { return "nop"; } template void handler_entry_write_nop::write(offs_t offset, uX data, uX mem_mask) const { } template void handler_entry_write_nop::write_interruptible(offs_t offset, uX data, uX mem_mask) const { } template u16 handler_entry_write_nop::write_flags(offs_t offset, uX data, uX mem_mask) const { return this->m_flags; } template u16 handler_entry_write_nop::lookup_flags(offs_t offset, uX mem_mask) const { return this->m_flags; } template std::string handler_entry_write_nop::name() const { return "nop"; } template class handler_entry_read_unmapped<0, 1>; template class handler_entry_read_unmapped<0, 0>; template class handler_entry_read_unmapped<1, 3>; template class handler_entry_read_unmapped<1, 0>; template class handler_entry_read_unmapped<1, -1>; template class handler_entry_read_unmapped<2, 3>; template class handler_entry_read_unmapped<2, 0>; template class handler_entry_read_unmapped<2, -1>; template class handler_entry_read_unmapped<2, -2>; template class handler_entry_read_unmapped<3, 0>; template class handler_entry_read_unmapped<3, -1>; template class handler_entry_read_unmapped<3, -2>; template class handler_entry_read_unmapped<3, -3>; template class handler_entry_write_unmapped<0, 1>; template class handler_entry_write_unmapped<0, 0>; template class handler_entry_write_unmapped<1, 3>; template class handler_entry_write_unmapped<1, 0>; template class handler_entry_write_unmapped<1, -1>; template class handler_entry_write_unmapped<2, 3>; template class handler_entry_write_unmapped<2, 0>; template class handler_entry_write_unmapped<2, -1>; template class handler_entry_write_unmapped<2, -2>; template class handler_entry_write_unmapped<3, 0>; template class handler_entry_write_unmapped<3, -1>; template class handler_entry_write_unmapped<3, -2>; template class handler_entry_write_unmapped<3, -3>; template class handler_entry_read_nop<0, 1>; template class handler_entry_read_nop<0, 0>; template class handler_entry_read_nop<1, 3>; template class handler_entry_read_nop<1, 0>; template class handler_entry_read_nop<1, -1>; template class handler_entry_read_nop<2, 3>; template class handler_entry_read_nop<2, 0>; template class handler_entry_read_nop<2, -1>; template class handler_entry_read_nop<2, -2>; template class handler_entry_read_nop<3, 0>; template class handler_entry_read_nop<3, -1>; template class handler_entry_read_nop<3, -2>; template class handler_entry_read_nop<3, -3>; template class handler_entry_write_nop<0, 1>; template class handler_entry_write_nop<0, 0>; template class handler_entry_write_nop<1, 3>; template class handler_entry_write_nop<1, 0>; template class handler_entry_write_nop<1, -1>; template class handler_entry_write_nop<2, 3>; template class handler_entry_write_nop<2, 0>; template class handler_entry_write_nop<2, -1>; template class handler_entry_write_nop<2, -2>; template class handler_entry_write_nop<3, 0>; template class handler_entry_write_nop<3, -1>; template class handler_entry_write_nop<3, -2>; template class handler_entry_write_nop<3, -3>;