summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/hd61700/hd61700d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/hd61700/hd61700d.cpp')
-rw-r--r--src/devices/cpu/hd61700/hd61700d.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/cpu/hd61700/hd61700d.cpp b/src/devices/cpu/hd61700/hd61700d.cpp
index daa45c6b649..53a98be2145 100644
--- a/src/devices/cpu/hd61700/hd61700d.cpp
+++ b/src/devices/cpu/hd61700/hd61700d.cpp
@@ -392,7 +392,7 @@ uint32_t get_dasmflags(uint8_t op)
}
-static offs_t internal_disasm_hd61700(cpu_device *device, std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, int options)
+CPU_DISASSEMBLE(hd61700)
{
const hd61700_dasm *inst;
uint32_t dasmflags;
@@ -433,13 +433,3 @@ static offs_t internal_disasm_hd61700(cpu_device *device, std::ostream &stream,
return (pos>>1) | dasmflags | DASMFLAG_SUPPORTED;
}
-
-
-CPU_DISASSEMBLE(hd61700)
-{
- std::ostringstream stream;
- offs_t result = internal_disasm_hd61700(device, stream, pc, oprom, opram, options);
- std::string stream_str = stream.str();
- strcpy(buffer, stream_str.c_str());
- return result;
-}