diff options
Diffstat (limited to 'src/devices/cpu/lh5801/5801dasm.cpp')
-rw-r--r-- | src/devices/cpu/lh5801/5801dasm.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/cpu/lh5801/5801dasm.cpp b/src/devices/cpu/lh5801/5801dasm.cpp index 86cb6bf6e06..2cf6f105b8d 100644 --- a/src/devices/cpu/lh5801/5801dasm.cpp +++ b/src/devices/cpu/lh5801/5801dasm.cpp @@ -663,7 +663,7 @@ const Entry Entry::table_fd[0x100]={ } // anonymous namespace -static offs_t internal_disasm_lh5801(cpu_device *device, std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, int options) +CPU_DISASSEMBLE(lh5801) { int pos = 0; int oper; @@ -747,13 +747,3 @@ static offs_t internal_disasm_lh5801(cpu_device *device, std::ostream &stream, o return pos; } - - -CPU_DISASSEMBLE(lh5801) -{ - std::ostringstream stream; - offs_t result = internal_disasm_lh5801(device, stream, pc, oprom, opram, options); - std::string stream_str = stream.str(); - strcpy(buffer, stream_str.c_str()); - return result; -} |