diff options
author | Marvin Borner | 2020-04-28 20:59:57 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-28 20:59:57 +0200 |
commit | 5f8b5ce7efb7738eaebad43f9648975788ae19ff (patch) | |
tree | ab8fc4d4baa4adb99dc90461df689650acf34cef /src/userspace/libc/syscall.c | |
parent | bfe16de4be67565f1a1e7b1331fcbe3aedf9c54e (diff) |
Fixed userspace entering...
Many other fixes too, but I won't mention them because I don't want to
:)
Diffstat (limited to 'src/userspace/libc/syscall.c')
-rw-r--r-- | src/userspace/libc/syscall.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c index c147703..fd27ef5 100644 --- a/src/userspace/libc/syscall.c +++ b/src/userspace/libc/syscall.c @@ -5,16 +5,10 @@ */ DEFN_SYSCALL0(halt, 0); -DEFN_SYSCALL1(write, 1, const char *); +DEFN_SYSCALL1(putch, 1, const char *); -DEFN_SYSCALL1(read, 2, const char *); +DEFN_SYSCALL0(getch, 2); -DEFN_SYSCALL1(writec, 3, char); +DEFN_SYSCALL1(malloc, 3, uint32_t); -DEFN_SYSCALL0(readc, 4); - -DEFN_SYSCALL0(get_pointers, 5); - -DEFN_SYSCALL1(alloc, 6, uint32_t); - -DEFN_SYSCALL1(free, 7, uint32_t); +DEFN_SYSCALL1(free, 4, uint32_t);
\ No newline at end of file |