Stability fixes (i hope); attempt to implement argc, argv, envp, auxv; Syscalls

This commit is contained in:
Alex
2022-11-10 07:09:32 +02:00
parent 40b1da9dd1
commit 77081b4e1e
35 changed files with 3116 additions and 211 deletions

12
syscalls.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef __FENNIX_KERNEL_SYSCALLS_LIST_H__
#define __FENNIX_KERNEL_SYSCALLS_LIST_H__
#include <types.h>
enum NativeSyscalls
{
_exit = 0,
_print,
};
#endif // !__FENNIX_KERNEL_SYSCALLS_LIST_H__