mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
std::stringstream ==> std::ostringstream
This commit is contained in:
parent
dca6901d80
commit
3bf06f6dea
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user