summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z8000/z8000cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/z8000/z8000cpu.h')
-rw-r--r--src/devices/cpu/z8000/z8000cpu.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/devices/cpu/z8000/z8000cpu.h b/src/devices/cpu/z8000/z8000cpu.h
index 21c648ecb6e..102cac41f0e 100644
--- a/src/devices/cpu/z8000/z8000cpu.h
+++ b/src/devices/cpu/z8000/z8000cpu.h
@@ -174,30 +174,3 @@
#define GET_DSP16 uint32_t dsp16 = addr_add(m_pc, (int16_t)get_operand(1))
#define GET_ADDR(o) uint32_t addr = (uint32_t)get_addr_operand(o)
#define GET_ADDR_RAW(o) uint32_t addr = (uint32_t)get_raw_addr_operand(o)
-
-
-/* structure for the opcode definition table */
-typedef void (z8002_device::*opcode_func)();
-
-struct Z8000_init {
- int beg, end, step;
- int size, cycles;
- opcode_func opcode;
- const char *dasm;
- uint32_t dasmflags;
-};
-
-/* structure for the opcode execution table / disassembler */
-struct Z8000_exec {
- opcode_func opcode;
- int cycles;
- int size;
- const char *dasm;
- uint32_t dasmflags;
-};
-
-/* opcode execution table */
-extern Z8000_exec *z8000_exec;
-
-extern void z8000_init_tables(void);
-extern void z8000_deinit_tables(void);