URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [intrtbl.h] - Rev 562
Go to most recent revision | Compare with Previous | Blame | View Log
/*-------------------------------------*/ /* intrtbl.h */ /* Last change : 12.10.94 */ /*-------------------------------------*/ /* * $Id: intrtbl.h,v 1.2 2001-09-27 11:59:59 chris 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