summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/superfx/superfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/superfx/superfx.cpp')
-rw-r--r--src/devices/cpu/superfx/superfx.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/devices/cpu/superfx/superfx.cpp b/src/devices/cpu/superfx/superfx.cpp
index 9da3d9bd4c7..7ed250b49f4 100644
--- a/src/devices/cpu/superfx/superfx.cpp
+++ b/src/devices/cpu/superfx/superfx.cpp
@@ -1438,15 +1438,6 @@ void superfx_device::execute_run()
}
}
-offs_t superfx_device::disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
-{
- std::ostringstream stream;
- offs_t result = disasm_disassemble(stream, pc, oprom, opram, options);
- std::string stream_str = stream.str();
- strcpy(buffer, stream_str.c_str());
- return result;
-}
-
offs_t superfx_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
{
uint8_t op = *(uint8_t *)(opram + 0);