diff --git a/src/interrupts.hpp b/src/interrupts.hpp deleted file mode 100644 index f8c99aa..0000000 --- a/src/interrupts.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef INTERRUPTS_H -#define INTERRUPTS_H - -namespace kernelns -{ - class Interrupts - { - public: - - static const unsigned int MAX_SYSCALL_ID = 31; - - Interrupts(); - - void enable(); - - void disable(); - - void addSyscall(unsigned int id, void* function); - - private: - - void* syscalls[MAX_SYSCALL_ID + 1]; - - }; -} - -#endif \ No newline at end of file