mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 18:31:03 +00:00
24 lines
365 B
C
24 lines
365 B
C
#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
|