URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [mkpart/] [start.h] - Rev 119
Go to most recent revision | 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); int getMask(void); void setMask(int mask); ISR getISR(int irq); void setISR(int irq, ISR isr); #endif /* _START_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log