fix mode output when illegal arm mode is detected. Now prints illegal mode for index -1.

git-svn-id: svn://svn.berlios.de/openocd/trunk@664 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
oharboe 2008-05-19 12:39:06 +00:00
parent 552244724c
commit 454b0a65e6
2 changed files with 6 additions and 3 deletions

View File

@ -70,11 +70,14 @@ char* armv4_5_core_reg_list[] =
"cpsr", "spsr_fiq", "spsr_irq", "spsr_svc", "spsr_abt", "spsr_und"
};
char* armv4_5_mode_strings[] =
char * armv4_5_mode_strings_list[] =
{
"User", "FIQ", "IRQ", "Supervisor", "Abort", "Undefined", "System"
"Illegal mode value", "User", "FIQ", "IRQ", "Supervisor", "Abort", "Undefined", "System"
};
/* Hack! Yuk! allow -1 index, which simplifies codepaths elsewhere in the code */
char** armv4_5_mode_strings = armv4_5_mode_strings_list+1;
char* armv4_5_state_strings[] =
{
"ARM", "Thumb", "Jazelle"

View File

@ -36,7 +36,7 @@ typedef enum armv4_5_mode
ARMV4_5_MODE_ANY = -1
} armv4_5_mode_t;
extern char* armv4_5_mode_strings[];
extern char** armv4_5_mode_strings;
typedef enum armv4_5_state
{