aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2019-12-10 21:47:41 +0100
committerMarvin Borner2019-12-10 21:47:41 +0100
commit68915f46e66ed65ce2d32009fdfa2f5dca116842 (patch)
tree7d6df3e4dc6219422cc4b1faf909ff32a74b6edf /src/userspace/syscall.c
parent33bdf18dad2539aca21727e95e04bfedecd37a76 (diff)
Some syscalls and userspace stuff
sorry for the worse-getting commit messages...
Diffstat (limited to 'src/userspace/syscall.c')
-rw-r--r--src/userspace/syscall.c18
1 files changed, 18 insertions, 0 deletions
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 <syscall.h>
+
+/**
+ * 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