diff options
author | 2016-11-20 18:27:25 -0500 | |
---|---|---|
committer | 2016-11-20 18:27:25 -0500 | |
commit | 932f69d6e9a718f3a7c41df2f0d2877f4b360e43 (patch) | |
tree | 47f17e4cc390599c163447ce9962705682242cf8 /src/emu/didisasm.cpp | |
parent | 92d3c7869631ba13c651ba885326c6b08ebd57e4 (diff) |
Eliminated 'device_disasm_interface::disassemble(std::string &buffer, ...'
Diffstat (limited to 'src/emu/didisasm.cpp')
-rw-r--r-- | src/emu/didisasm.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/emu/didisasm.cpp b/src/emu/didisasm.cpp index ae8e0e7047d..95353889a65 100644 --- a/src/emu/didisasm.cpp +++ b/src/emu/didisasm.cpp @@ -90,16 +90,3 @@ offs_t device_disasm_interface::disassemble(std::ostream &stream, offs_t pc, con return result; } - - -//------------------------------------------------- -// disassemble - interface for disassembly -//------------------------------------------------- - -offs_t device_disasm_interface::disassemble(std::string &buffer, offs_t pc, const u8 *oprom, const u8 *opram, uint32_t options) -{ - std::stringstream stream; - offs_t result = disassemble(stream, pc, oprom, opram, options); - buffer = stream.str(); - return result; -} |