From 68915f46e66ed65ce2d32009fdfa2f5dca116842 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 10 Dec 2019 21:47:41 +0100 Subject: Some syscalls and userspace stuff sorry for the worse-getting commit messages... --- src/userspace/syscall.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/userspace/syscall.c (limited to 'src/userspace/syscall.c') diff --git a/src/userspace/syscall.c b/src/userspace/syscall.c new file mode 100644 index 0000000..a6bdc80 --- /dev/null +++ b/src/userspace/syscall.c @@ -0,0 +1,18 @@ +#include + +/** + * DEFINITIONS + */ +DEFN_SYSCALL0(halt, 0); + +DEFN_SYSCALL1(write, 1, char *); + +DEFN_SYSCALL1(read, 2, char *); + +DEFN_SYSCALL1(writec, 3, char *); + +DEFN_SYSCALL1(readc, 4, char *); + +DEFN_SYSCALL1(paging_alloc, 5, uint32_t); + +DEFN_SYSCALL2(paging_free, 6, uint32_t, uint32_t); \ No newline at end of file -- cgit v1.2.3