URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [wrtmbr/] [start.h] - Rev 18
Compare with Previous | Blame | View Log
/* * start.h -- startup code */ #ifndef _START_H_ #define _START_H_ typedef int (*ISR)(int irq); void enable(void); void disable(void); ISR getISR(int irq); void setISR(int irq, ISR isr); #endif /* _START_H_ */