diff options
Diffstat (limited to 'src/devices/cpu/hcd62121/hcd62121.cpp')
-rw-r--r-- | src/devices/cpu/hcd62121/hcd62121.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/hcd62121/hcd62121.cpp b/src/devices/cpu/hcd62121/hcd62121.cpp index 8a3e6fa5049..3c8e98149ea 100644 --- a/src/devices/cpu/hcd62121/hcd62121.cpp +++ b/src/devices/cpu/hcd62121/hcd62121.cpp @@ -525,8 +525,8 @@ void hcd62121_cpu_device::execute_run() } -offs_t hcd62121_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) +offs_t hcd62121_cpu_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) { extern CPU_DISASSEMBLE( hcd62121 ); - return CPU_DISASSEMBLE_NAME(hcd62121)(this, buffer, pc, oprom, opram, options); + return CPU_DISASSEMBLE_NAME(hcd62121)(this, stream, pc, oprom, opram, options); } |