Add: Starting kernel repos

This commit is contained in:
brice.boisson
2023-09-04 23:14:06 +09:00
commit c0c4dbc665
31 changed files with 1232 additions and 0 deletions

7
src/syscall.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef SYSCALL_H
#define SYSCALL_H
int write(int fd, void *buf);
int keyboard(void);
#endif /* !SYSCALL_H */