From bfe16de4be67565f1a1e7b1331fcbe3aedf9c54e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 19:15:47 +0200 Subject: Userspace rewrite -> IT WORKS! :) Finally, after many months of work and rewrites the syscalls with constant char pointers work now :D --- src/userspace/syscall.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/userspace/syscall.c (limited to 'src/userspace/syscall.c') diff --git a/src/userspace/syscall.c b/src/userspace/syscall.c deleted file mode 100644 index 9462b10..0000000 --- a/src/userspace/syscall.c +++ /dev/null @@ -1,20 +0,0 @@ -#include - -/** - * DEFINITIONS - */ -DEFN_SYSCALL0(halt, 0); - -DEFN_SYSCALL1(write, 1, const char *); - -DEFN_SYSCALL1(read, 2, const char *); - -DEFN_SYSCALL1(writec, 3, char); - -DEFN_SYSCALL0(readc, 4); - -DEFN_SYSCALL0(get_pointers, 5); - -DEFN_SYSCALL1(alloc, 6, uint32_t); - -DEFN_SYSCALL1(free, 7, uint32_t); \ No newline at end of file -- cgit v1.2.3