syscalls: start implementing some basic syscalls

This commit is contained in:
2025-06-20 21:59:08 +03:00
parent a9789b7f57
commit 4ccae473ca
8 changed files with 110 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
#ifndef SYSCALLS_H
#define SYSCALLS_H
#include "../include/task.h"
void handle_syscall(TrapFrame *tf);
#endif