URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [onetask/] [os/] [start.h] - Rev 93
Go to most recent revision | Compare with Previous | Blame | View Log
/* * start.h -- startup code */ #ifndef _START_H_ #define _START_H_ typedef void (*ISR)(int irq, unsigned int *registers); void enable(void); void disable(void); ISR getISR(int irq); void setISR(int irq, ISR isr); void startTask(unsigned int physStackTop); void setTLB(int index, unsigned int entryHi, unsigned int entryLo); #endif /* _START_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log