mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-25 22:43:55 +00:00
Initial Commit
This commit is contained in:
23
thirdparty/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h
vendored
Normal file
23
thirdparty/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h
vendored
Normal file
@@ -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
|
Reference in New Issue
Block a user