URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
[/] [minsoc/] [trunk/] [sw/] [support/] [int.h] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* Number of interrupt handlers */ #define MAX_INT_HANDLERS 32 /* Handler entry */ struct ihnd { void (*handler)(void *); void *arg; }; /* Add interrupt handler */ int int_add(unsigned long vect, void (* handler)(void *), void *arg); /* Initialize routine */ int int_init();
Go to most recent revision | Compare with Previous | Blame | View Log