diff options
author | Marvin Borner | 2020-01-16 17:15:53 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-16 17:15:53 +0100 |
commit | cd3ad989210dc8a3f5805dd5d4c4a6bd74e281db (patch) | |
tree | 015fa67057b1ca14a86a8faf4d1cabb0356467b2 /src/userspace/main.c | |
parent | 602b98247e9c87e38870e39abf1d8b13aeae5d0f (diff) |
Quite a different approach to userspace paging
Hope this works soon!
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r-- | src/userspace/main.c | 3 |
1 files changed, 3 insertions, 0 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")) { |