kern

view src/intr.h @ 24:53588744382c

switched the vm to use recursive page tables
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 05 Apr 2011 02:09:02 +0300
parents
children 9939a6d7a45a
line source
1 #ifndef INTR_H_
2 #define INTR_H_
4 #include <inttypes.h>
6 typedef void (*intr_func_t)(int, uint32_t);
9 void init_intr(void);
11 void interrupt(int intr_num, intr_func_t func);
13 #endif /* INTR_H_ */