?? abort.c
字號(hào):
#define UNDEF_INSTR 0
#define PREFETCH_ABORT 1
#define DATA_ABORT 2
#define RESERVED_ABORT 3
static char *abort_msg[] = { "Undefined instruction", "Prefectch abort",
"Data abort", "Reserved handler" };
void abort(int type, int pc)
{
//ser_printf("\nAbort(%s at pc=0x%08x)\n", abort_msg[type], pc);
while(1);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -