summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z80/z80ndasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/z80/z80ndasm.h')
-rw-r--r--src/devices/cpu/z80/z80ndasm.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/devices/cpu/z80/z80ndasm.h b/src/devices/cpu/z80/z80ndasm.h
new file mode 100644
index 00000000000..7ae021ced93
--- /dev/null
+++ b/src/devices/cpu/z80/z80ndasm.h
@@ -0,0 +1,23 @@
+// license:BSD-3-Clause
+/*****************************************************************************
+ *
+ * Z80N disassembler
+ *
+ *****************************************************************************/
+
+#ifndef MAME_CPU_Z80_Z80NDASM_H
+#define MAME_CPU_Z80_Z80NDASM_H
+
+#pragma once
+
+#include "z80dasm.h"
+
+class z80n_disassembler : public z80_disassembler
+{
+protected:
+ static const z80dasm mnemonic_ed_n[256];
+
+ virtual const z80dasm &get_mnemonic_ed(u8 opcode) override { return mnemonic_ed_n[opcode]; }
+};
+
+#endif