summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sharc/sharcops.hxx
diff options
context:
space:
mode:
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);
}