gdbregs_arm.c

来自「umon bootloader source code, support mip」· C语言 代码 · 共 12 行

C
12
字号
#define CPU_PC_REG	"PC"

/* List of the register names for the ARM in the order they
 * are expected by the GDB 'g' command (read all registers).
 * R13=SP, R14=LR
 */
static char  *gdb_regtbl[] = {
	"R0",	"R1",	"R2",	"R3", "R4", "R5", "R6", "R7",
	"R8",	"R9",	"R10",	"R11", "R12", "R13", "R14", "PC",
	"R0",	"CPSR",	
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?