esfarm.h
来自「IXP425的BSP代码」· C头文件 代码 · 共 41 行
H
41 行
/* esfArm.h - ARM exception stack frames *//* Copyright 1996-1997 Wind River Systems, Inc. *//*modification history--------------------01a,09may96,cdp created*/#ifndef __INCesfArmh#define __INCesfArmh#ifdef __cplusplusextern "C" {#endif#ifndef _ASMLANGUAGE/* The Exception Stack Frame * On the ARM, this is faked by a stub and the pointer * passed back points to the PC and CPSR at the end of the * register structure. If that changes, so must this. */typedef struct { INSTR *pc; /* program counter */ ULONG cpsr; /* current PSR */ UINT32 vecAddr; /* address of exception vector => type */ } ESF;#endif /* _ASMLANGUAGE */#ifdef __cplusplus}#endif#endif /* __INCesfArmh */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?