diff options
Diffstat (limited to 'src/devices/cpu/i8085/8085dasm.h')
-rw-r--r-- | src/devices/cpu/i8085/8085dasm.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/devices/cpu/i8085/8085dasm.h b/src/devices/cpu/i8085/8085dasm.h new file mode 100644 index 00000000000..1aad019848d --- /dev/null +++ b/src/devices/cpu/i8085/8085dasm.h @@ -0,0 +1,24 @@ +// license:BSD-3-Clause +// copyright-holders:Juergen Buchmueller +/***************************************************************************** + * + * Portable I8085A disassembler + * + *****************************************************************************/ + +#ifndef MAME_CPU_I8085_8085DASM_H +#define MAME_CPU_I8085_8085DASM_H + +#pragma once + +class i8085_disassembler : public util::disasm_interface +{ +public: + i8085_disassembler() = default; + virtual ~i8085_disassembler() = default; + + virtual u32 opcode_alignment() const override; + virtual offs_t disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer ¶ms) override; +}; + +#endif |