VFS mount/umount + sys_open/close/read/fake write

This commit is contained in:
2026-04-10 14:31:38 +02:00
parent 17589d72cf
commit aff113d02b
10 changed files with 592 additions and 12 deletions
+7 -1
View File
@@ -10,7 +10,13 @@
#include "limine.h"
enum ErrorCodes {
ENOMEM,
EIO
EIO,
EINVAL,
ENOENT,
EFAULT,
EBADF,
EBUSY,
ENOSYS
};
#define CLEAR_INTERRUPTS __asm__ volatile("cli")