summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sharc/sharcops.hxx
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-11-20 18:25:24 -0500
committer Nathan Woods <npwoods@mess.org>2016-11-20 18:25:24 -0500
commit3bf06f6dea3fa63872be38b24e27f7c1832c3541 (patch)
tree538327c7d6fbd648a0a25408c2c98d8657f1b400 /src/devices/cpu/sharc/sharcops.hxx
parentdca6901d8096cfb4257e1a25beac4e1cbb554261 (diff)
std::stringstream ==> std::ostringstream
Diffstat (limited to 'src/devices/cpu/sharc/sharcops.hxx')
-rw-r--r--src/devices/cpu/sharc/sharcops.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/sharc/sharcops.hxx b/src/devices/cpu/sharc/sharcops.hxx
index c64a56c601d..af1beed292b 100644
--- a/src/devices/cpu/sharc/sharcops.hxx
+++ b/src/devices/cpu/sharc/sharcops.hxx
@@ -2722,7 +2722,7 @@ void adsp21062_device::sharcop_idle()
void adsp21062_device::sharcop_unimplemented()
{
extern CPU_DISASSEMBLE(sharc);
- std::stringstream dasm;
+ std::ostringstream dasm;
CPU_DISASSEMBLE_NAME(sharc)(nullptr, dasm, m_core->pc, nullptr, nullptr, 0);
osd_printf_debug("SHARC: %08X: %s\n", m_core->pc, dasm.str().c_str());
fatalerror("SHARC: Unimplemented opcode %04X%08X at %08X\n", (uint16_t)(m_core->opcode >> 32), (uint32_t)(m_core->opcode), m_core->pc);