forked from auracaster/openocd
- split fileio handling into fileio part and image handling
- reworked etm/etb into a generic etm part with trace capture drivers (currently only etb supported) - added XScale debug handler binary to repository - added Thumb disassembling (thanks to Vincent Palatin for this patch) - added support for non-CFI compatible flashes to cfi driver (currently only SST39VFxxx devices supported) This checkin is experimental, not suitable for general use git-svn-id: svn://svn.berlios.de/openocd/trunk@155 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
#include "register.h"
|
||||
#include "target.h"
|
||||
|
||||
enum armv4_5_mode
|
||||
typedef enum armv4_5_mode
|
||||
{
|
||||
ARMV4_5_MODE_USR = 16,
|
||||
ARMV4_5_MODE_FIQ = 17,
|
||||
@@ -33,16 +33,16 @@ enum armv4_5_mode
|
||||
ARMV4_5_MODE_UND = 27,
|
||||
ARMV4_5_MODE_SYS = 31,
|
||||
ARMV4_5_MODE_ANY = -1
|
||||
};
|
||||
} armv4_5_mode_t;
|
||||
|
||||
extern char* armv4_5_mode_strings[];
|
||||
|
||||
enum armv4_5_state
|
||||
typedef enum armv4_5_state
|
||||
{
|
||||
ARMV4_5_STATE_ARM,
|
||||
ARMV4_5_STATE_THUMB,
|
||||
ARMV4_5_STATE_JAZELLE,
|
||||
};
|
||||
} armv4_5_state_t;
|
||||
|
||||
extern char* armv4_5_state_strings[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user