diff options
author | 2019-08-19 15:53:47 +0200 | |
---|---|---|
committer | 2019-08-19 15:53:47 +0200 | |
commit | 450a57568e16822d625c3e0cd390e9c9e6a08718 (patch) | |
tree | 32d1157ef80d206fda7bfccbd5557828d1261570 /src/devices/cpu/dsp56k/dsp56dsm.cpp | |
parent | 93726462006c604f1f6d728be6e7d18065e2d9e2 (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.cpp | 34 |
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 ¶ms) -{ - 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); -} |