diff options
Diffstat (limited to 'src/devices/cpu/sh2/sh2.cpp')
-rw-r--r-- | src/devices/cpu/sh2/sh2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sh2/sh2.cpp b/src/devices/cpu/sh2/sh2.cpp index 78bf317d3e2..ad000212a13 100644 --- a/src/devices/cpu/sh2/sh2.cpp +++ b/src/devices/cpu/sh2/sh2.cpp @@ -248,10 +248,10 @@ const address_space_config *sh2_device::memory_space_config(address_spacenum spa } } -offs_t sh2_device::disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) +offs_t sh2_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) { extern CPU_DISASSEMBLE( sh2 ); - return CPU_DISASSEMBLE_NAME( sh2 )(this, buffer, pc, oprom, opram, options); + return CPU_DISASSEMBLE_NAME( sh2 )(this, stream, pc, oprom, opram, options); } |