diff options
author | Marvin Borner | 2020-04-29 23:26:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-29 23:26:51 +0200 |
commit | 8b52d7698e4a9a5abaf730c7da1c4f865cb78f8e (patch) | |
tree | 873f2ae99b369f4db809fe1cd2684ae0e60c6144 /src/userspace/programs/init.c | |
parent | 0f54f0de1004c6e9a455c295dc76879ac37a408f (diff) |
Working framebuffer from userspace...
Well, it doesn't actually work. I disabled several security measures to
get this working and I'll try to fix these soon.
Diffstat (limited to 'src/userspace/programs/init.c')
-rw-r--r-- | src/userspace/programs/init.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/userspace/programs/init.c b/src/userspace/programs/init.c index a669249..3c1d51f 100644 --- a/src/userspace/programs/init.c +++ b/src/userspace/programs/init.c @@ -5,14 +5,9 @@ void main() { - u32 *buf = malloc(4096); - for (int i = 0; i < 4; i++) - buf[i] = 42; - syscall_halt(); - - //printf("Initializing userspace...\n"); - //gui_init(); - //syscall_exec("/bin/sh"); + printf("Initializing userspace...\n"); + gui_init(); + syscall_exec("/bin/sh"); while (1) { }; |