URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [twotasks-1/] [os/] [start.h] - Rev 80
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); void orMask(unsigned int mask); void andMask(unsigned int mask); ISR getISR(int irq); void setISR(int irq, ISR isr); void startTask(void); void setTLB(int index, unsigned int entryHi, unsigned int entryLo); #endif /* _START_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log