aboutsummaryrefslogtreecommitdiff
path: root/src/userspace
diff options
context:
space:
mode:
authorMarvin Borner2020-01-16 17:15:53 +0100
committerMarvin Borner2020-01-16 17:15:53 +0100
commitcd3ad989210dc8a3f5805dd5d4c4a6bd74e281db (patch)
tree015fa67057b1ca14a86a8faf4d1cabb0356467b2 /src/userspace
parent602b98247e9c87e38870e39abf1d8b13aeae5d0f (diff)
Quite a different approach to userspace paging
Hope this works soon!
Diffstat (limited to 'src/userspace')
-rw-r--r--src/userspace/main.c3
-rw-r--r--src/userspace/mlibc/stdio/printf.c6
-rw-r--r--src/userspace/start.asm4
3 files changed, 5 insertions, 8 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c
index 6149573..c2307a8 100644
--- a/src/userspace/main.c
+++ b/src/userspace/main.c
@@ -14,6 +14,9 @@ void user_main()
char text[] = "> Successfully switched to usermode!\n";
printf(text);
+ // TODO: PLEASE
+ printf("If this message shows up, I'll be happy.\n");
+
while (1) {
char *input = readline();
if (starts_with(input, "ls")) {
diff --git a/src/userspace/mlibc/stdio/printf.c b/src/userspace/mlibc/stdio/printf.c
index b582897..5617d03 100644
--- a/src/userspace/mlibc/stdio/printf.c
+++ b/src/userspace/mlibc/stdio/printf.c
@@ -1,14 +1,10 @@
#include <stdarg.h>
#include <mlibc/stdio.h>
-#include <mlibc/string.h>
-#include <mlibc/stdlib.h>
void printf(const char *fmt, ...)
{
- char *format = (char *) malloc(strlen(fmt));
- strcpy(format, fmt);
va_list args;
va_start(args, fmt);
- vprintf(format, args);
+ vprintf(fmt, args);
va_end(args);
} \ No newline at end of file
diff --git a/src/userspace/start.asm b/src/userspace/start.asm
index 7348825..c6bb2a0 100644
--- a/src/userspace/start.asm
+++ b/src/userspace/start.asm
@@ -4,6 +4,4 @@ section .text
global _start
extern user_main
_start:
- mov esp, ebp
- call user_main
- jmp $ \ No newline at end of file
+ call user_main \ No newline at end of file