summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/gigatron/gigatrondasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/gigatron/gigatrondasm.h')
-rw-r--r--src/devices/cpu/gigatron/gigatrondasm.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/devices/cpu/gigatron/gigatrondasm.h b/src/devices/cpu/gigatron/gigatrondasm.h
new file mode 100644
index 00000000000..a1e590c0be8
--- /dev/null
+++ b/src/devices/cpu/gigatron/gigatrondasm.h
@@ -0,0 +1,24 @@
+// license:BSD-3-Clause
+// copyright-holders:Sterophonick
+
+// Gigatron disassembler
+
+#ifndef MAME_CPU_GIGATRON_GIGATRONDASM_H
+#define MAME_CPU_GIGATRON_GIGATRONDASM_H
+
+#pragma once
+
+class gigatron_disassembler : public util::disasm_interface
+{
+public:
+ gigatron_disassembler() = default;
+ virtual ~gigatron_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:
+};
+
+#endif
+