Committing old file deletion

This commit is contained in:
2021-04-12 00:08:38 -05:00
parent 259aa3fabc
commit 48e6f907a1

View File

@@ -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