summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sharc/sharcops.hxx
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2017-07-05 11:44:49 +0200
committer Olivier Galibert <galibert@pobox.com>2017-11-26 17:41:27 +0100
commit6caef2579a1490f05d28bcede731cbdd45fc5c65 (patch)
tree8055384e183be3cb27e7d0894ac53dc96c09e6fa /src/devices/cpu/sharc/sharcops.hxx
parent34b222062c89adbeed822f56be6130421777e11f (diff)
dvdisasm: Overhaul [O. Galibert]
Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
Diffstat (limited to 'src/devices/cpu/sharc/sharcops.hxx')
-rw-r--r--src/devices/cpu/sharc/sharcops.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/cpu/sharc/sharcops.hxx b/src/devices/cpu/sharc/sharcops.hxx
index af1beed292b..8e7a03d974e 100644
--- a/src/devices/cpu/sharc/sharcops.hxx
+++ b/src/devices/cpu/sharc/sharcops.hxx
@@ -2721,9 +2721,5 @@ void adsp21062_device::sharcop_idle()
void adsp21062_device::sharcop_unimplemented()
{
- extern CPU_DISASSEMBLE(sharc);
- std::ostringstream dasm;
- CPU_DISASSEMBLE_NAME(sharc)(nullptr, dasm, m_core->pc, nullptr, nullptr, 0);
- osd_printf_debug("SHARC: %08X: %s\n", m_core->pc, dasm.str().c_str());
fatalerror("SHARC: Unimplemented opcode %04X%08X at %08X\n", (uint16_t)(m_core->opcode >> 32), (uint32_t)(m_core->opcode), m_core->pc);
}