aboutsummaryrefslogtreecommitdiff
path: root/src/userspace
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 22:34:38 +0200
committerMarvin Borner2020-05-06 22:34:38 +0200
commit8083536f321ad8a12ad4668c2bf41a65c3e3b2f6 (patch)
tree427d7da11944b299bdce3041259bf8fd31971ede /src/userspace
parentd94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (diff)
Added event mapping driver
Diffstat (limited to 'src/userspace')
-rw-r--r--src/userspace/libc/syscall.c6
-rw-r--r--src/userspace/libc/syscall.h4
-rw-r--r--src/userspace/programs/init.c10
3 files changed, 18 insertions, 2 deletions
diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c
index cf9dc89..d5c6708 100644
--- a/src/userspace/libc/syscall.c
+++ b/src/userspace/libc/syscall.c
@@ -21,4 +21,8 @@ DEFN_SYSCALL0(get_pid, SYS_GET_PID);
DEFN_SYSCALL1(malloc, SYS_MALLOC, u32);
-DEFN_SYSCALL1(free, SYS_FREE, u32); \ No newline at end of file
+DEFN_SYSCALL1(free, SYS_FREE, u32);
+
+DEFN_SYSCALL1(get, SYS_GET, u32);
+
+DEFN_SYSCALL2(map, SYS_MAP, u32, u8 *); \ No newline at end of file
diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h
index 038f985..30925da 100644
--- a/src/userspace/libc/syscall.h
+++ b/src/userspace/libc/syscall.h
@@ -86,4 +86,8 @@ DECL_SYSCALL1(malloc, u32);
DECL_SYSCALL1(free, u32);
+DECL_SYSCALL1(get, u32);
+
+DECL_SYSCALL2(map, u32, u8 *);
+
#endif \ No newline at end of file
diff --git a/src/userspace/programs/init.c b/src/userspace/programs/init.c
index 732c104..5ff1864 100644
--- a/src/userspace/programs/init.c
+++ b/src/userspace/programs/init.c
@@ -1,15 +1,23 @@
#include <stdio.h>
#include <stdlib.h>
+#include <common.h>
#include <syscall.h>
#include <unistd.h>
#include <gui.h>
+void test(u8 *data)
+{
+ syscall_halt();
+}
+
void main()
{
/* gui_init(); */
/* gui_screen_clear(); */
//printf("Initializing userspace...\n");
- syscall_exec("/bin/sh");
+ syscall_map(MAP_KEYBOARD, (u8 *)&test);
+
+ //syscall_exec("/bin/sh");
while (1) {
};