📄 dbgarmlib.h
字号:
/* dbgArmLib.h - header file for ARM-dependent part of debugger *//* Copyright 1996-1998 Wind River Systems, Inc. *//*modification history--------------------01d,12nov98,cdp added support for ARM generic Thumb library.01c,20apr98,dbt modified for new breakpoint scheme01b,24apr97,cdp added Thumb (ARM7TDMI_T) support; changed DBG_BREAK_INST for non-Thumb processors.01a,09may96,cdp created*/#ifndef __INCdbgArmLibh#define __INCdbgArmLibh#ifdef __cplusplusextern "C" {#endif#include "esf.h"#define BREAK_ESF ESF#define TRACE_ESF ESF#if ARM_THUMB#define DBG_BREAK_INST 0xDEFE /* The undefined instruction used as a * a breakpoint for Thumb-state */#define DBG_INST_ALIGN 2#else#define DBG_BREAK_INST 0xE7FDDEFE /* The undefined instruction used as a * a breakpoint for ARM-state */#define DBG_INST_ALIGN 4#endif /* ARM_THUMB */#define DBG_NO_SINGLE_STEP 1 /* no hardware trace support */#ifdef __cplusplus}#endif#endif /* __INCdbgArmLibh */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -