diff options
Diffstat (limited to 'src/devices/cpu/tms32025/32025dsm.cpp')
-rw-r--r-- | src/devices/cpu/tms32025/32025dsm.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/cpu/tms32025/32025dsm.cpp b/src/devices/cpu/tms32025/32025dsm.cpp index 1299f2a7f19..cf9a61571b5 100644 --- a/src/devices/cpu/tms32025/32025dsm.cpp +++ b/src/devices/cpu/tms32025/32025dsm.cpp @@ -387,7 +387,7 @@ static void InitDasm32025(void) OpInizialized = 1; } -static offs_t internal_disasm_tms32025(cpu_device *device, std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, int options) +CPU_DISASSEMBLE(tms32025) { uint32_t flags = 0; int a, b, c, d, k, m, n, p, r, s, t, w; /* these can all be filled in by parsing an instruction */ @@ -503,13 +503,3 @@ static offs_t internal_disasm_tms32025(cpu_device *device, std::ostream &stream, } return cnt | flags | DASMFLAG_SUPPORTED; } - - -CPU_DISASSEMBLE(tms32025) -{ - std::ostringstream stream; - offs_t result = internal_disasm_tms32025(device, stream, pc, oprom, opram, options); - std::string stream_str = stream.str(); - strcpy(buffer, stream_str.c_str()); - return result; -} |