excsimhppalib.h

来自「IXP425的BSP代码」· C头文件 代码 · 共 58 行

H
58
字号
/* excSimhppaLib.h - simhppa exception library header *//* Copyright 1993-1994 Wind River Systems, Inc. *//*modification history--------------------01d,08jun94,ms   saved more state during exception/breakpoint01c,10jan94,gae  added external declaration for excExcepHook01b,26jan94,gae  rearranged EXC_INFO -- same as "simsparc".01a,11aug93,gae  from rrr.*/#ifndef __INCexcSimhppaLibh#define __INCexcSimhppaLibh#ifdef __cplusplusextern "C" {#endif#ifndef _ASMLANGUAGE/* variable declarations */extern FUNCPTR  excExcepHook;   /* add'l rtn to call when exceptions occur */#define	ESF	EXC_INFOtypedef struct    {    int valid;    int pc;    int npc;    int ps;    int sig;    int code;    int addr;    int ptcb;    int gr[32];    int fr[32];    int sr[8];    int cr11;    int state;    int addr1;    int addr2;    int pad[4];    } EXC_INFO;#ifdef __cplusplus}#endif#endif	/* _ASMLANGUAGE */#endif /* __INCexcSimhppaLibh */

⌨️ 快捷键说明

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