summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mcs96/i8x9xd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mcs96/i8x9xd.h')
-rw-r--r--src/devices/cpu/mcs96/i8x9xd.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/devices/cpu/mcs96/i8x9xd.h b/src/devices/cpu/mcs96/i8x9xd.h
new file mode 100644
index 00000000000..72227f7933f
--- /dev/null
+++ b/src/devices/cpu/mcs96/i8x9xd.h
@@ -0,0 +1,26 @@
+// license:BSD-3-Clause
+// copyright-holders:Olivier Galibert
+/***************************************************************************
+
+ i8x9x.h
+
+ MCS96, 8x9x branch, the original version
+
+***************************************************************************/
+
+#ifndef MAME_CPU_MCS96_I8X9XD_H
+#define MAME_CPU_MCS96_I8X9XD_H
+
+#include "mcs96d.h"
+
+class i8x9x_disassembler : public mcs96_disassembler
+{
+public:
+ i8x9x_disassembler();
+ virtual ~i8x9x_disassembler() = default;
+
+private:
+ static const disasm_entry disasm_entries[0x100];
+};
+
+#endif