summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/arcompact/arcompactdasm_dispatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/arcompact/arcompactdasm_dispatch.h')
-rw-r--r--src/devices/cpu/arcompact/arcompactdasm_dispatch.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/devices/cpu/arcompact/arcompactdasm_dispatch.h b/src/devices/cpu/arcompact/arcompactdasm_dispatch.h
deleted file mode 100644
index 519f4b7ae4e..00000000000
--- a/src/devices/cpu/arcompact/arcompactdasm_dispatch.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:David Haywood
-/*********************************\
-
- ARCompact disassembler
-
-\*********************************/
-
-#define DASM_OPS_16 std::ostream &stream, offs_t pc, uint16_t op, const uint8_t* oprom
-#define DASM_OPS_32 std::ostream &stream, offs_t pc, uint32_t op, const uint8_t* oprom
-#define DASM_PARAMS stream, pc, op, oprom
-
-#define LIMM_REG 62
-
-#define GET_LIMM_32 \
- limm = oprom[6] | (oprom[7] << 8); \
- limm |= (oprom[4] << 16) | (oprom[5] << 24);
-
-
-int arcompact_handle00_dasm(DASM_OPS_32);
-int arcompact_handle01_dasm(DASM_OPS_32);
-int arcompact_handle01_00_dasm(DASM_OPS_32);
-int arcompact_handle01_01_dasm(DASM_OPS_32);
-int arcompact_handle01_01_00_dasm(DASM_OPS_32);
-int arcompact_handle01_01_01_dasm(DASM_OPS_32);
-int arcompact_handle04_dasm(DASM_OPS_32);
-int arcompact_handle04_2f_dasm(DASM_OPS_32);
-int arcompact_handle04_2f_3f_dasm(DASM_OPS_32);
-int arcompact_handle05_dasm(DASM_OPS_32);
-
-int arcompact_handle05_2f_dasm(DASM_OPS_32);
-int arcompact_handle05_2f_3f_dasm(DASM_OPS_32);
-
-
-int arcompact_handle0c_dasm(DASM_OPS_16);
-int arcompact_handle0d_dasm(DASM_OPS_16);
-int arcompact_handle0e_dasm(DASM_OPS_16);
-int arcompact_handle0f_dasm(DASM_OPS_16);
-int arcompact_handle0f_00_dasm(DASM_OPS_16);
-int arcompact_handle0f_00_07_dasm(DASM_OPS_16);
-int arcompact_handle17_dasm(DASM_OPS_16);
-int arcompact_handle18_dasm(DASM_OPS_16);
-int arcompact_handle18_05_dasm(DASM_OPS_16);
-int arcompact_handle18_06_dasm(DASM_OPS_16);
-int arcompact_handle18_07_dasm(DASM_OPS_16);
-int arcompact_handle19_dasm(DASM_OPS_16);
-int arcompact_handle1c_dasm(DASM_OPS_16);
-int arcompact_handle1d_dasm(DASM_OPS_16);
-int arcompact_handle1e_dasm(DASM_OPS_16);
-int arcompact_handle1e_03_dasm(DASM_OPS_16);