diff options
Diffstat (limited to 'src/devices/cpu/cop400/cop420ds.h')
-rw-r--r-- | src/devices/cpu/cop400/cop420ds.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/devices/cpu/cop400/cop420ds.h b/src/devices/cpu/cop400/cop420ds.h new file mode 100644 index 00000000000..a92ba84a54f --- /dev/null +++ b/src/devices/cpu/cop400/cop420ds.h @@ -0,0 +1,26 @@ +// license:BSD-3-Clause +// copyright-holders:Curt Coder +/*************************************************************************** + + cop420ds.c + + National Semiconductor COP420 Emulator. + +***************************************************************************/ + +#ifndef MAME_CPU_COP420_COP420DS_H +#define MAME_CPU_COP420_COP420DS_H + +#pragma once + +class cop420_disassembler : public util::disasm_interface +{ +public: + cop420_disassembler() = default; + virtual ~cop420_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 |