diff options
author | 2016-11-21 11:30:06 +1100 | |
---|---|---|
committer | 2016-11-21 11:30:06 +1100 | |
commit | b8b0774997e7a898c53479b1d7e4860a0d4dc1e8 (patch) | |
tree | 07e199d26412bf36d0dc75e0645510c20ac691f2 /src/devices/cpu/avr8/avr8.h | |
parent | 9b197f3d5556e1e2808fe82fc970a04a4e84a034 (diff) | |
parent | 68a115369194cb7b859ce53ed2d9a201278d3430 (diff) |
Merge pull request #1317 from npwoods/disasm_stdstring
Refactored device_disasm_interface::disassemble() and dasm_override_delegate to take string buffers as std::string
Diffstat (limited to 'src/devices/cpu/avr8/avr8.h')
-rw-r--r-- | src/devices/cpu/avr8/avr8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/avr8/avr8.h b/src/devices/cpu/avr8/avr8.h index 006d052f70c..ffef27cd781 100644 --- a/src/devices/cpu/avr8/avr8.h +++ b/src/devices/cpu/avr8/avr8.h @@ -128,7 +128,7 @@ protected: // device_disasm_interface overrides virtual uint32_t disasm_min_opcode_bytes() const override; virtual uint32_t disasm_max_opcode_bytes() const override; - virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) override; + virtual offs_t disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) override; // device_state_interface overrides virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; |