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