URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [intrtbl.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
/*-------------------------------------*/ /* intrtbl.h */ /* Last change : 12.10.94 */ /*-------------------------------------*/ /* * intrtbl.h,v 1.2 1999/10/27 16:27:34 joel Exp */ #ifndef _INTRTBL_H_ #define _INTRTBL_H_ /* Interrupt Handler. */ typedef void (* IntrHndl)(void); /* Interrupt Table. */ typedef struct { unsigned int pendPrty; /* Pending Priorities */ unsigned int pendIntr[8]; /* Pending Interrupts */ IntrHndl intrHndl[248]; /* Interrupt Handlers */ } InterruptTbl; /* Interrupt Handler Type. */ #define NORMAL_IH 0 #define IN_CACHE_IH 0x10 /* Interrupt Table Itself. */ extern InterruptTbl interruptTbl; #endif /*-------------*/ /* End of file */ /*-------------*/
Go to most recent revision | Compare with Previous | Blame | View Log