summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp56k/dsp56dsm.cpp
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2019-08-19 15:53:47 +0200
committer mooglyguy <therealmogminer@gmail.com>2019-08-19 15:53:47 +0200
commit450a57568e16822d625c3e0cd390e9c9e6a08718 (patch)
tree32d1157ef80d206fda7bfccbd5557828d1261570 /src/devices/cpu/dsp56k/dsp56dsm.cpp
parent93726462006c604f1f6d728be6e7d18065e2d9e2 (diff)
-dsp56k: Renamed relevant classes, files and namespaces to indicate that it is a DSP56156 core, not a DSP5600x core. [Ryan Holtz]
Diffstat (limited to 'src/devices/cpu/dsp56k/dsp56dsm.cpp')
-rw-r--r--src/devices/cpu/dsp56k/dsp56dsm.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/devices/cpu/dsp56k/dsp56dsm.cpp b/src/devices/cpu/dsp56k/dsp56dsm.cpp
deleted file mode 100644
index 847a4bda6a0..00000000000
--- a/src/devices/cpu/dsp56k/dsp56dsm.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Andrew Gardner
-/***************************************************************************
-
- dsp56dsm.c
- Disassembler for the portable Motorola/Freescale dsp56k emulator.
- Written by Andrew Gardner
-
-***************************************************************************/
-
-#include "emu.h"
-#include "opcode.h"
-#include "dsp56dsm.h"
-
-u32 dsp56k_disassembler::opcode_alignment() const
-{
- return 1;
-}
-
-/*****************************/
-/* Main disassembly function */
-/*****************************/
-offs_t dsp56k_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer &params)
-{
- const uint16_t w0 = opcodes.r16(pc);
- const uint16_t w1 = opcodes.r16(pc+1);
-
- // Decode and disassemble.
- DSP56K::Opcode op(w0, w1);
- stream << op.disassemble();
-
- const unsigned size = op.size();
- return (size | SUPPORTED);
-}