should be right?

This commit is contained in:
2026-05-06 11:26:33 +02:00
parent 935564c4b2
commit 63e9a761a3
8 changed files with 166 additions and 64 deletions
+6 -3
View File
@@ -8,10 +8,13 @@
#define KERNEL_H
#include "limine.h"
enum ErrorCodes {
ENOMEM,
EIO,
ENOENT
ENOMEM, // No memory
EIO, // Input/output error
ENOENT, // No entry
EBADFD, // Bad file descriptor
EMFILE // Too many open files
};
#define CLEAR_INTERRUPTS __asm__ volatile("cli")