summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/f8/f8dasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/f8/f8dasm.h')
-rw-r--r--src/devices/cpu/f8/f8dasm.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/devices/cpu/f8/f8dasm.h b/src/devices/cpu/f8/f8dasm.h
new file mode 100644
index 00000000000..112cf35dc0f
--- /dev/null
+++ b/src/devices/cpu/f8/f8dasm.h
@@ -0,0 +1,21 @@
+// license:BSD-3-Clause
+// copyright-holders:Juergen Buchmueller
+
+#ifndef MAME_CPU_F8_F8DASM_H
+#define MAME_CPU_F8_F8DASM_H
+
+#pragma once
+
+class f8_disassembler : public util::disasm_interface
+{
+public:
+ f8_disassembler() = default;
+ virtual ~f8_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 &params) override;
+private:
+ static const char *const rname[16];
+};
+
+#endif
' /> Miodrag Milanovic2016-10-221-1/+1 * some bool <-> int not needed conversions, also cleaned drivenum.* was using m... Miodrag Milanovic2016-10-211-1/+1 * Ioport refactoring and cleanups (nw) AJR2016-05-181-3/+43 * ui: Re-enabled configuration menu for single-machine and added some options. dankan18902016-04-151-0/+30 * ui: Moved options "Configure Directories" and "Save Configuration" into "Conf... dankan18902016-02-271-1/+1 * Cleanups and version bump Miodrag Milanovic2016-02-241-3/+3 * Initial import of MEWUI to MAME [Dankan1890] Dankan18902016-02-041-1/+18 * Do not handle any UI inputs immediately after state load/save Victor Vasiliev2016-02-021-0/+10 * Cleanups and version bumpmame0170 Miodrag Milanovic2016-01-271-19/+18 * let's use our templates to clear (nw) Miodrag Milanovic2016-01-111-4/+0 * modernized ui_input_manager (nw) Miodrag Milanovic2016-01-101-106/+152 * removed memory tracking (nw) Miodrag Milanovic2016-01-081-1/+1 * clang-modernize part 1 (nw) Miodrag Milanovic2015-12-031-5/+5 * Fixed some suggestions by ReSharper C++ (nw)