diff options
Diffstat (limited to 'capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h')
-rw-r--r-- | capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h b/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h new file mode 100644 index 000000000..5164e2a5e --- /dev/null +++ b/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h @@ -0,0 +1,23 @@ +#ifndef CS_MOS65XXDISASSEMBLERINTERNALS_H +#define CS_MOS65XXDISASSEMBLERINTERNALS_H + +#include "capstone/mos65xx.h" + +enum { + MOS65XX_CPU_TYPE_6502, + MOS65XX_CPU_TYPE_65C02, + MOS65XX_CPU_TYPE_W65C02, + MOS65XX_CPU_TYPE_65816, +}; + +typedef struct mos65xx_info { + + const char *hex_prefix; + unsigned cpu_type; + unsigned long_m; + unsigned long_x; + +} mos65xx_info; + + +#endif |