summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h6280/h6280.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h6280/h6280.cpp')
-rw-r--r--src/devices/cpu/h6280/h6280.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h6280/h6280.cpp b/src/devices/cpu/h6280/h6280.cpp
index ecb2420e366..a3fae0075f5 100644
--- a/src/devices/cpu/h6280/h6280.cpp
+++ b/src/devices/cpu/h6280/h6280.cpp
@@ -2238,10 +2238,10 @@ uint32_t h6280_device::disasm_max_opcode_bytes() const
// helper function
//-------------------------------------------------
-offs_t h6280_device::disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+offs_t h6280_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
{
extern CPU_DISASSEMBLE( h6280 );
- return CPU_DISASSEMBLE_NAME(h6280)(this, buffer, pc, oprom, opram, options);
+ return CPU_DISASSEMBLE_NAME(h6280)(this, stream, pc, oprom, opram, options);
}